我正在为一个项目设置 stylelint,从 cli 运行时一切正常:
$ stylelint 'css/**/*.css' --fix
css/style.css
20:18 × Expected newline after ":" with a multi-line declaration declaration-colon-newline-after
...
...
但是,当运行时npm script
出现无输出(除了记录命令)并且错误似乎被忽略:
$ npm run stylelint
> project lint:css path/project
> stylelint 'css/**/*.css' --fix
包.json
"scripts": {
...
"stylelint": "stylelint 'css/**/*.css' --fix"
},
当 stylelint 作为 npm 脚本运行时,知道如何获取控制台输出并退出错误吗?