Skip to content

Commit

Permalink
Merge pull request #237 from omnifed/236-feature-add-import-attrs-for…
Browse files Browse the repository at this point in the history
…-jsr

chore: add JSON assert for JSR
  • Loading branch information
caseybaggz committed Jul 5, 2024
2 parents d983a6a + dd2e43a commit 20b8a9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configs/src/versions.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const version = '0.5.0'
export const version = '0.5.1'
export const nextTag = 'next'

export const packages = ['panda-preset', 'icons', 'react', 'styled-system']
10 changes: 5 additions & 5 deletions packages/panda-preset/src/tokens/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import PrimitiveColors from './primitive-colors.cerberus.json'
import PrimitiveTypography from './primitive-typography.value.json'
import SemanticColorsDark from './semantic-colors.dark-mode.json'
import SemanticColorsLight from './semantic-colors.light-mode.json'
import TextStyles from './text-styles.desktop.json'
import PrimitiveColors from './primitive-colors.cerberus.json' assert { type: 'json' }
import PrimitiveTypography from './primitive-typography.value.json' assert { type: 'json' }
import SemanticColorsDark from './semantic-colors.dark-mode.json' assert { type: 'json' }
import SemanticColorsLight from './semantic-colors.light-mode.json' assert { type: 'json' }
import TextStyles from './text-styles.desktop.json' assert { type: 'json' }

/**
* This module is a collection of raw tokens that are used to generate the theme.
Expand Down

0 comments on commit 20b8a9b

Please sign in to comment.