我正在定义一个具有多个任务和目标的 Grunt 项目,使用 task build
,我想运行一些复制目标,然后使用 task deployment
,我也想运行copy
一些其他目标(仅将文件夹复制到特定目录以进行部署例如),我不想在build
任务中执行这个目标。
那么我怎样才能跳过这个 Grunt 目标build
这是我的例子
grunt.registerTask('build', ['clean', 'copy']);
grunt.registerTask('deployment', ['copy:deployment']);
grunt.initConfig(
{
copy: {
foo: // Do something here,
bar: // Do anothering here,
....
deployment: // Copy file and execute something for deployment target.
},
}
);