Skip to content

Commit

Permalink
fix for mode override
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Dec 18, 2024
1 parent ad6eae5 commit 2b9d4c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/buildTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ const getStyleDictionaryConfig: StyleDictionaryConfigGenerator = (
Object.entries({
css: css(`css/${filename}.css`, options.prefix, options.buildPath, {
themed: options.themed,
theme: [options.theme, getFallbackTheme(options.theme)],
theme: options.theme,
}),
docJson: docJson(`docs/${filename}.json`, options.prefix, options.buildPath, {
theme: [options.theme, getFallbackTheme(options.theme)],
theme: options.theme,
}),
styleLint: styleLint(`styleLint/${filename}.json`, options.prefix, options.buildPath, {
theme: options.theme,
Expand Down

0 comments on commit 2b9d4c0

Please sign in to comment.