-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add best practices for token types #182
Conversation
|
Deploying with Cloudflare Pages
|
89769a2
to
e951221
Compare
"test:plugin-sass": "cd packages/plugin-sass && pnpm run test", | ||
"test:plugin-tw": "cd packages/plugin-tailwind && pnpm run test", | ||
"test:utils": "cd packages/utils && pnpm run test", | ||
"test": "pnpm run -r --if-present --aggregate-output --parallel test", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to literally no one but myself: --parallel
on the top level is a good idea. Nested --parallel
s is a horrible idea (i.e. don’t use within any packages).
Changes
Fixes #180. Adds some Tips & recommendations sections to different token pages, to help people writing their own plugins & custom transformers.
Also as a chore, removes
npm-run-all
in favor of a simplerpnpm run
workflow.How to Review
pnpm run
change will probably break Cloudflare Pages; ’sok