cleancss 命令不起作用
cleancss command not working
我在本地安装了 clean-css,但我的 npm 脚本抛出错误,因为找不到 cleancss (sh: cleancss: command not found
)。
我尝试直接从命令行 运行 cleancss 并全局安装它 (npm install -g clean-css
) 但我的 shell 仍然不知道它。所有其他包都工作正常。
这是我的 package.json 的样子:
{
"scripts": {
"lint": "echo '=> linting' && jshint **/*.js",
"minify:js": "echo '=> minify:js' && uglifyjs main.js -o public/js/main.min.js",
"minify": "echo '=> minify:css' && cleancss main.css -o public/css/main.min.css"
},
"devDependencies": {
"clean-css": "^4.0.2",
"jshint": "^2.9.4",
"uglify-js": "^2.7.5"
}
}
我错过了什么?
clean-css 4.0 introduces some breaking changes:
- API and CLI interfaces are split, so API stays in this repository while CLI moves to clean-css-cli;
您只安装了 API。您需要安装 CLI。 运行:
npm install --save-dev clean-css-cli
npm uninstall --save-dev clean-css
要卸载 API-only 版本并安装 CLI。
我在本地安装了 clean-css,但我的 npm 脚本抛出错误,因为找不到 cleancss (sh: cleancss: command not found
)。
我尝试直接从命令行 运行 cleancss 并全局安装它 (npm install -g clean-css
) 但我的 shell 仍然不知道它。所有其他包都工作正常。
这是我的 package.json 的样子:
{
"scripts": {
"lint": "echo '=> linting' && jshint **/*.js",
"minify:js": "echo '=> minify:js' && uglifyjs main.js -o public/js/main.min.js",
"minify": "echo '=> minify:css' && cleancss main.css -o public/css/main.min.css"
},
"devDependencies": {
"clean-css": "^4.0.2",
"jshint": "^2.9.4",
"uglify-js": "^2.7.5"
}
}
我错过了什么?
clean-css 4.0 introduces some breaking changes:
- API and CLI interfaces are split, so API stays in this repository while CLI moves to clean-css-cli;
您只安装了 API。您需要安装 CLI。 运行:
npm install --save-dev clean-css-cli
npm uninstall --save-dev clean-css
要卸载 API-only 版本并安装 CLI。