-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
feat(webpack): support passing function as postcssOptions
#19495
feat(webpack): support passing function as postcssOptions
#19495
Conversation
|
I am not sure that this change correctly applies the I would also need to open a separate PR for updating the documentation. The current section on PostCSS config sessions has not yet been updated to Nuxt 2.16 changes (https://nuxtjs.org/docs/configuration-glossary/configuration-build#postcss) |
I have extracted the changes to I'm not sure how to test this PR, though. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## 2.x #19495 +/- ##
==========================================
- Coverage 66.18% 66.16% -0.03%
==========================================
Files 93 93
Lines 4096 4105 +9
Branches 1158 1163 +5
==========================================
+ Hits 2711 2716 +5
- Misses 1119 1123 +4
Partials 266 266
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. β View full report in Codecov by Sentry. |
@obulat would you be happy to resolve conflicts in this PR? I can help with adding a test fixture. |
60735c7
to
347dae8
Compare
@obulat Thank you for updating. I've now added a potential way to test the postcss function config, which is now passed through unchanged through the normalisation function. |
Merging to include in 2.17. Feel free to come back to me if you think there's anything missing here. |
postcssOptions
Thank you for getting this PR finished, @danielroe! |
π Linked issue
resolves #7015
#19482
closes #8899
β Type of change
π Description
This is an updated version of #8899 that applies the changes to the now-default PostCSS 8 config.
If postcss config is a function, we execute the custom function, but we also apply the default config of Nuxt. Therefore we can ensure that the config has a minimum default.
Postcssconfig can either be an object (already supported) or a function which gets passed in the loadercontext. But nuxt does not support passing in a function currently.
Why
Passing in a function allows more complex uses cases, e.g. by applying different postcss steps for different ressources. (see also https://github.com/webpack-contrib/postcss-loader#function)
Solution
This approach adds a new "postcssConfig" option to the "postcss" Nuxt config. Either this is the regular postcssConfig, or it is a function. see https://webpack.js.org/loaders/postcss-loader/#postcssoptions
(only works with postcss@8, because postcss-loader >= 4.0 is required, and postcss7 nuxt setup conflicts with this version of postcss-loader)
e.g.
nuxt.config.js.
π Checklist