Bower:运行 构建系统
Bower: run build system
是否可以在使用 Bower 安装期间自动 运行“g运行t”或“gulp”?
生成包的编译版本而不包含 git 存储库中的编译版本。
例如:
I install a github package called: foo/bar, I use: bower install foo/bar
I get the source code that has a Gruntfile.json file that compiles the source code in a single file called main.js. How do I get bower run "npm install && grunt" automatically
如果您能提供更清晰的用例,将会有所帮助,但您可以使用 bower 的 install hooks 到 运行 安装时的任意命令。
// .bowerrc
{
"scripts": {
"postinstall": "gulp build",
}
}
支持 preinstall
、postinstall,
和 preuninstall
。
是否可以在使用 Bower 安装期间自动 运行“g运行t”或“gulp”?
生成包的编译版本而不包含 git 存储库中的编译版本。
例如:
I install a github package called: foo/bar, I use: bower install foo/bar
I get the source code that has a Gruntfile.json file that compiles the source code in a single file called main.js. How do I get bower run "npm install && grunt" automatically
如果您能提供更清晰的用例,将会有所帮助,但您可以使用 bower 的 install hooks 到 运行 安装时的任意命令。
// .bowerrc
{
"scripts": {
"postinstall": "gulp build",
}
}
支持 preinstall
、postinstall,
和 preuninstall
。