我正在将巨大的 Gruntfile 转换为多个小脚本文件。我为此使用“load-grunt-config”。
我为每个任务创建了单独的文件并将它们放在grunt文件夹中。
在 gruntFile 中注册任务:
grunt.registerTask('default', ['concat', 'uglify', 'sass']);
将上述注册任务更改为在 aliases.json 中遵循
{
"default": [
"concat",
"uglify",
"sass"
]
}
我必须在 alaiases.json 中再定义一项任务。gruntfile 中的相应代码如下。
grunt.registerTask('watch:lint', function() {
grunt.config.set('watch.dev.tasks', 'lint');
grunt.task.run('watch:dev');
});
上述注册任务中的功能不能在 aliases.json 中定义。使用多个脚本文件时应该在哪里以及如何指定?
提前致谢