How to import all tasks from another gulp file.js(如何从另一个 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 导入所有任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从另一个 gulp file.js 导入所有任务


基础教程推荐
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01