gpt4 book ai didi

gruntjs - 使用 grunt 构建 bower 组件

转载 作者:行者123 更新时间:2023-12-03 23:49:25 26 4
gpt4 key购买 nike

如何配置我的 Gruntfile为我的 bower 运行构建脚本组件?

一个问题是每个组件可能有不同的构建命令,例如 D3使用 Makefile ,所以我需要运行 make , 和 angular.js也使用 grunt 并且需要运行 grunt build .

有人可以指出我的一个例子吗?

最佳答案

应构建 bower 组件。

否则,用户将处于您所处的确切情况。我知道许多组件目前还没有,但我们对此无能为力。

您可以使用 grunt-shell轻松执行您需要的任何构建脚本:

grunt.initConfig({
shell: {
d3: {
command: 'make',
options: {
execOptions: {
cwd: 'components/d3'
}
}
},
angular: {
command: 'grunt',
options: {
execOptions: {
cwd: 'components/angular'
}
}
}
}
});

关于gruntjs - 使用 grunt 构建 bower 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16800135/

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