see : packages/postcss-tape/package.json
"dependencies": {
// most recent version
"postcss": "~8.4",
// oldest supported
"postcss-8.2": "npm:postcss@~8.2"
},- only update
postcss-tape - run
npm run lintfrom the root
This will update the peer dependency version for PostCSS in all packages and plugins.
- kept up to date
- only used in CI to catch regressions
- used as the peer dependency version in all plugins and packages
- updated based on community needs
- can be the same as the most recent version version
- Plugins use
^MAJOR.MINOR. - PostCSS Tape uses
~MAJOR.MINOR.
Avoid increasing these versions when possible.
Major version updates are also always a breaking change.