Skip to content

Commit

Permalink
fix(cli): creation of entry css files was skipped when run without --…
Browse files Browse the repository at this point in the history
…preview option (#2725)
  • Loading branch information
unekinn authored Nov 4, 2024
1 parent b3fa7a1 commit b16971c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/tokens/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function buildTokens(options: Options): Promise<void> {
try {
for (const [key, { buildConfig, sdConfigs }] of R.toPairs(buildAndSdConfigs)) {
if (!(buildConfig.enabled?.() ?? true)) {
return;
continue;
}
if (sdConfigs.length > 0) {
console.log(`\n🍱 Building ${chalk.green(buildConfig.name ?? key)}`);
Expand Down

0 comments on commit b16971c

Please sign in to comment.