-
-
Notifications
You must be signed in to change notification settings - Fork 29
Changing mechanism #77
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
Conversation
|
✔️ Deploy Preview for cssdb ready! 🔨 Explore the source changes: d460115 🔍 Inspect the deploy log: https://app.netlify.com/sites/cssdb/deploys/61ea69a9d2e3e90007751219 😎 Browse the preview: https://deploy-preview-77--cssdb.netlify.app |
romainmenke
left a comment
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.
one small thing!
romainmenke
left a comment
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.
Small note, looks great!
romainmenke
left a comment
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.
LGTM!
Tricky stuff, great work looking into as much cases as possible!
tasks/populate-db.mjs
Outdated
| const newCSSDB = JSON.stringify(cleanDB, null, 2); | ||
| const esmCSSDB = `export default ${newCSSDB}`; | ||
| const newCSSDB = `${JSON.stringify(cleanDB, null, 2)}\n`; | ||
| const esmCSSDB = `export default ${newCSSDB}\n`; |
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.
| const esmCSSDB = `export default ${newCSSDB}\n`; | |
| const esmCSSDB = `export default ${newCSSDB}`; |
Tiny detail :)
Final newline is already added above, so not needed here.
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.
🙈
Not intended to be merged, want to fully check this makes sense, perhaps I was too naive automating this and we need some way to flag some things