gpt4 book ai didi

javascript - 使用一条命令安装所有 grunt devDependencies

转载 作者:行者123 更新时间:2023-11-30 07:38:49 24 4
gpt4 key购买 nike

我刚刚设置了我的 Gruntfile.js 文件并加载了所有 (9) 个 devDependencies。为了安装这些 devDependencies,我使用了以下命令

npm install name-of-plugin --save-dev

我为每个依赖项使用了 9 次上述命令。现在我想要的是使用一个命令安装所有这些依赖项,例如 grunt install plugins 或其他命令。该命令将从 package.json 文件中读取 devDependencies 并为我安装它。

这可能吗?如果是,我该如何实现?

最佳答案

你必须在 package.jsonnpm install 中添加 devDependencies

package.json

{
"name": "projectname",
"version": "0.0.1",
"dependencies": {},

"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-compass": "~0.5.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-cssmin": "~0.6.0",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-htmlmin": "~0.1.3",
"grunt-contrib-imagemin": "~0.2.0",
"grunt-contrib-watch": "~0.5.2",
"grunt-contrib-jade": "*",
"grunt-autoprefixer": "~0.2.0",
"grunt-usemin": "~0.1.11",
"grunt-svgmin": "~0.2.0",
"grunt-rev": "~0.1.0",
"grunt-concurrent": "~0.3.0",
"load-grunt-tasks": "~0.1.0"
}
}

然后运行

 npm install

关于javascript - 使用一条命令安装所有 grunt devDependencies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23041545/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com