我正在寻找最佳方法来划分Gruntfile.js
定义grunt任务的地方。
现在我用require
制作了它,看起来像这样:
require('./grunt_tasks/task_1')(grunt);
task_1.js
看起来像:
module.exports = function(grunt){
grunt.registerTask('task_1', [
'sub_task_1',
'sub_task_2',
'sub_task_3'
]);
};
它工作得很好,但我正在寻找一种更清洁的方式。感谢。
答案 0 :(得分:0)
我发现了这个,load-grunt-config
并在config中为加载文件添加了configPath
数组。