-
-
Notifications
You must be signed in to change notification settings - Fork 112
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 Sass support for esbuild, update frontend dependency versions #542
Conversation
Your Render PR Server URL is https://bridgetown-api-pr-542.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c9i97nj97ejb9oetm1bg. |
Your Render PR Server URL is https://bridgetown-beta-pr-542.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c9i97nr97ejb9oetm1f0. |
const sourceMap = result.sourceMap | ||
|
||
const promises = sourceMap.sources.map(async source => { | ||
const daFile = await fs.readFile(fileURLToPath(source), "utf8") |
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.
should rename this variable =)
Like the title says! Sass files are now supported in esbuild. Unlike Webpack, you can easily use Sass files after the fact, it's not mutually exclusive with PostCSS.
Also the versions of the frontend dependencies in package.json have all been updated.
Closes #526