PostCSS 8 Support
See original GitHub issueWhat problem does this feature solve?
This feature solves compatibility issues with multiple frameworks such as Tailwind v2.0 (https://tailwindcss.com/docs/installation#post-css-7-compatibility-build). Currently, the lock file shows that postcss7 is required, which generates issues when trying to build with webpack using tailwind css framework.
What does the proposed API look like?
upgrade in yarn.lock:
"@vue/component-compiler-utils@^3.1.0":
version "3.1.1"
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.1.1.tgz#d4ef8f80292674044ad6211e336a302e4d2a6575"
integrity sha512- lN3nsfJJDGMNz7fCpcoYIORrXo0K3OTsdr8jCM7FuqdI4 70TY6gxY6viJ2Xi1clqyPg7LpeOWwjF31vSMmUw==
dependencies:
consolidate "^0.15.1"
hash-sum "^1.0.2"
lru-cache "^4.1.2"
merge-source-map "^1.1.0"
postcss "^7.0.14"
postcss-selector-parser "^6.0.2"
prettier "^1.18.2"
source-map "~0.6.1"
vue-template-es2015-compiler "^1.9.0"
To support PostCSS 8.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:8
- Comments:8 (3 by maintainers)
Top Results From Across the Web
PostCSS 8 for end users - GitHub
PostCSS 8 supports plugins from PostCSS 7. You just need to update postcss dependency and tool, which run postcss (like postcss-loader or ...
Read more >PostCSS 8.0: Plugin migration guide - Evil Martians
How to migrate your plugins to use the new API in PostCSS 8.0 for better performance and smaller node_modules.
Read more >Vue 3 PostCSS 8 - Get Help
Are there still parts of Vue 3 that do not support PostCSS 8? If so, are there any issues to track them? All...
Read more >PostCSS 8 Error When Installing Tailwind CSS in Vue 3 (v3 ...
It will support PostCSS 8 without any problem. Then follow the Tailwind 3 installation guide using PostCSS. Don't forget to include your ...
Read more >postcss - npm
PostCSS is a tool for transforming styles with JS plugins. These plugins can lint your CSS, support variables and mixins, transpile future ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’d like to add that the version of
postcss
in this repo has two known vulnerabilities:Any chance of upgrading it to 8?
What issues? Could you elaborate? Because the postcss 7 listed here is only used for scoped styles, and tailwind is expected to be executed in another pipeline, they shall not interfere with each other.