@@ -17,15 +17,16 @@ var writeFileSync = fs.outputFileSync;
1717 */
1818
1919program
20- . version ( require ( '../package.json' ) . version )
2120 . usage ( '[<input>] [<output>]' )
22- . option ( '-m, --minify' , 'minify output with cssnano' )
23- . option ( '-L, --no-lint' , 'disable stylelint and postcss-bem-linter' )
21+ . option ( '-c, --config [path]' , 'a custom PostCSS config file' )
2422 . option ( '-i, --import-root [path]' , 'the root directory for imported css files' )
23+ . option ( '-w, --watch' , 'watch the input file and any imports for changes' )
24+ . option ( '-m, --minify' , 'minify output with cssnano' )
2525 . option ( '-e, --throw-error' , 'throw an error when any warnings are found' )
26- . option ( '-c , --config [path] ' , 'a custom PostCSS config file ' )
26+ . option ( '-L , --no-lint ' , 'disable stylelint and postcss-bem-linter ' )
2727 . option ( '-v, --verbose' , 'log verbose output for debugging' )
28- . option ( '-w, --watch' , 'watch the input file and any imports for changes' ) ;
28+ . version ( require ( '../package.json' ) . version ) ;
29+
2930
3031/**
3132 * Examples.
0 commit comments