问题描述
是否有可能从其他gulp files.js中调用任务的一个主gulpfile.js?儿童gulpfile.js简单的要求到主要的不起作用。
我有一个平台项目,其中包含几个具有独立gulpfiles的子项目,所以我需要一个解决方案来管理所有子项目中的所有子项目。
Is it possible to have one main gulpfile.js from which to call tasks from other gulp files.js? Simple "require" of child gulpfile.js into main one doesn't work.I have a platform project which includes several sub projects with separate gulpfiles, so I need a solution to manage all child gulpfiles from within main one
推荐答案
使用模块。从项目README使用它像这样:
It is possible to have one main gulpfile.js from which to call tasks from other gulp files.js using the require-dir
module. From the projects README use it like this:
如果您的 gulpfile.js
开始变得太大,您可以使用
模块。
If your gulpfile.js
is starting to grow too large, you can split the tasksinto separate files by using the require-dirmodule.
想象下面的文件结构:
gulpfile.js
tasks/
├── dev.js
├── release.js
└── test.js
安装 require-dir
module:
npm install --save-dev require-dir
将以下行添加到 gulpfile.js
文件中。
Add the following lines to your gulpfile.js
file.
var requireDir = require('require-dir');
var dir = requireDir('./tasks');
这篇关于如何从另一个gulp file.js中导入所有任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!