gulp.dest not creating destination folder(gulp.dest 没有创建目标文件夹)
问题描述
我的 gulp 代码部分看起来像这样
My gulp code looks like this, in part
gulp.src(['../application-base/**/**.js', '!../application-base/assets/**/**.js'], { base: './' })
.pipe(gulpPlumber({
errorHandler: function (error) {
console.log(`
Error ${error}`);
this.emit('end');
}
}))
.pipe(gprint(filePath => "Transpiling: " + filePath.replace('..\application-base\', '')))
.pipe(babel({ compact: false }))
.pipe(gulp.dest('../application-base-transpiled/'))
.on('end', () => done());
如果我改变了
.pipe(gulp.dest('../application-base-transpiled/'))
到
.pipe(gulp.dest(''))
然后创建转译文件,并覆盖原始文件.问题是
then the transpiled files are created, and overwrite the originals. The problem is that
.pipe(gulp.dest('../application-base-transpiled/'))
不保存文件,在 application-base-transpiled
如您所见,我正在使用一个底座,否则它似乎可以工作.
As you can see, I am using a base, which seems to work otherwise.
我错过了什么?
编辑
我看的更仔细了,好像和
I looked more closely, and it seems even with
.pipe(gulp.dest('../application-base-transpiled/'))
Gulp 仍在将转译后的文件放到原来的位置,覆盖原来的位置.Gulp 不喜欢我正在传递的目标,并且默默地忽略了这一点.
Gulp is still placing the transpiled files into the original place, overwriting the original. There's something about the dest I'm passing that Gulp doesn't like, and is ignoring silently.
编辑 2
似乎删除 base
选项解决了这个问题,这与我在其他地方看到的建议相反.gulp.dest
的文档并没有真正讨论这个问题.
It seems removing the base
option solves this problem, contrary to advice I've seen elsewhere. The docs for gulp.dest
don't really discuss this.
谁能提供一些对此的见解?
Can anyone provide some insight into this?
编辑 3
根据 Sven 的回答,我试过了
Per Sven's answer, I tried this
gulp.src(['**/**.js', '!assets/**/**.js'], { base: '../application-base' })
.pipe(gulpPlumber({
errorHandler: function errorHandler(error) {
console.log('
Error ' + error);
this.emit('end');
}
}))
.pipe(gprint(filePath => "Transpiling: " + filePath.replace('..\application-base\', '')))
.pipe(babel({ compact: false }))
.pipe(gulp.dest('../application-base-transpiled/'))
.on('end', () => done());
但似乎基础被忽略了,我自己当前目录中的文件被抓取并转换到位(我想要的最后一件事 - 幸运的是 GIT 有助于消除损坏).
But it seems the base is being ignored, and the files from my own current directory are being grabbed and transpiled in place (the last thing I want - fortunately GIT was helpful in undoing the damage).
src
使用数组时会忽略基本参数吗?
Is the base parameter ignored when using an array for src
?
推荐答案
在 gulp 流中,文件的目标路径遵循以下伪等式:
In gulp streams the destination path of a file follows this pseudo-equation:
gulp.dest
+ (gulp.src
没有前导 base
) = 文件的目标路径
gulp.dest
+ (gulp.src
without leading base
) = dest path of file
例子:
gulp.src('src/js/foo.js', {base:'src/'}).pipe(gulp.dest('dist/'));
结果:
'dist/'
+ ('src/js/foo.js'
没有前导 'src/'
) ='dist/js/foo.js'
'dist/'
+ ('src/js/foo.js'
without leading 'src/'
) = 'dist/js/foo.js'
在你的情况下:
'../application-base-transpiled/'
+ ('../application-base/foo/bar.js'
不带前导'./'
) = '../application-base-transpiled/../application-base/foo/bar.js'
'../application-base-transpiled/'
+ ('../application-base/foo/bar.js'
without leading './'
) = '../application-base-transpiled/../application-base/foo/bar.js'
所以你的文件最终在原始目录中.
So your files end up in the original directory.
您必须将 {base: '../application-base/'}
传递给 gulp.src()
以使您的示例工作.
You have to pass {base: '../application-base/'}
to gulp.src()
to make your example work.
注意
您仍然需要在 src
路径中包含 '../application-base/'
.base
的目的是根据我上面的公式来操纵 dest 路径;它确实不用于减少您在 gulp.src
中键入的击键次数.所以最终的结果应该是这样的
You still need to include '../application-base/'
in your src
path. The purpose of base
is to manipulate the dest path, per my equation above; it does not serve the purpose of lessening the number of keystrokes you type in gulp.src
. So the end result should be something like this
gulp.src(['../application-base/**/**.js'], { base: '../application-base' })
.pipe(gulpPlumber({
errorHandler: function errorHandler(error) {
console.log('
Error ' + error);
this.emit('end');
}
}))
.pipe(gprint(filePath => "Transpiling: " + filePath.replace('..\application-base\', '')))
.pipe(babel({ compact: false }))
.pipe(gulp.dest('../application-base-transpiled'))
.on('end', () => done());
<小时>
如果你没有通过 base
选项 到 gulp.src()
设置了默认值:
If you don't pass a base
option to gulp.src()
a default is set:
默认值:glob 开始之前的所有内容(参见 glob2base)
Default: everything before a glob starts (see glob2base)
这意味着你传递给 gulp.src()
的模式中的第一个 **
或 *
之前的所有内容用作 base
选项.由于您的模式是 ../application-base/**/**.js
,您的 base
选项会自动变为 ../application-base/代码>.
What this means is that everything up to the first **
or *
in the pattern that you pass to gulp.src()
is used as the base
option. Since your pattern is ../application-base/**/**.js
, your base
option automatically becomes ../application-base/
.
这篇关于gulp.dest 没有创建目标文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:gulp.dest 没有创建目标文件夹
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01