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 导入所有任务
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01