Skip to content

design-tokens : add support for at rules #717

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update plugins/postcss-design-tokens/src/transform.ts
  • Loading branch information
romainmenke authored Nov 22, 2022
commit bfae96d8af37dbd4a68b188b3164df9e5149c724
2 changes: 1 addition & 1 deletion plugins/postcss-design-tokens/src/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function transform(tokens: Map<string, Token>, result: Result, postCSSNod
if (replacements) {
componentValues.splice(index, 1, ...replacements);
didChangeSomething = true;
return;
return false;
}
}

Expand Down