-
Notifications
You must be signed in to change notification settings - Fork 95
Closed
Labels
Description
There are popular UX issue:
- User install
postcss-cli, but forgot to installpostcss postcss-clitakes oldpostcss 6orpostcss 7from the deep dependencies- User have
true is not a PostCSS pluginwithout a good explanation
@RyanZim we can solve this problem by checking PostCSS version in postcss-cli:
if (parseInt(postcss().version) < 8) {
throw new Error('Please install postcss or update it')
}Reactions are currently unavailable