如何从另一个 gulp file.js 导入所有任务

时间:2023-03-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 导入所有任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:使用 webpack 和 gulp 用于缩小、转译 ES6 代码的外部源映射 下一篇:如何使用 gulp 在浏览器中进行刷新

相关文章