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