如何从另一个 gulp file.js 导入所有任务 [英] How to import all tasks from another gulp file.js

查看:19
本文介绍了如何从另一个 gulp file.js 导入所有任务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以有一个主要的 gulpfile.js 来调用其他 gulp files.js 的任务?将子 gulpfile.js 简单地要求"到主文件中是行不通的.我有一个平台项目,其中包括几个带有单独 gulpfile 的子项目,所以我需要一个解决方案来管理主要项目中的所有子 gulpfile

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

推荐答案

如果我想让它面向未来并且不想安装怎么办另一个包.

And what if I want to make it future-proof and don't want to install another package for it.

以下内容适用于 gulp 4,没有任何额外的插件.

The following works for me with gulp 4, without any extra plugins.

taskfile.js中:

const { src, dest } = require('gulp');

const mytask = function () {
  return src('assets/**/*')
    .pipe(dosomething())
    .pipe(dest('dest');
}

module.exports = {
  mytask
}

gulpfile.js 中:

const { mytask } = require('taskfile.js');

// use in other tasks
gulp.task('manythings', gulp.series(..., mytask, ...));

// or use directly as 'gulp mytask'
module.exports = {
  mytask
}

这篇关于如何从另一个 gulp file.js 导入所有任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆