gpt4 book ai didi

javascript - '...paths.js' 在 ' gulp.src([...paths.js, ' 中是什么意思 !gulpfile.babel.js'], { base : '.' }) '?

转载 作者:搜寻专家 更新时间:2023-10-31 23:08:03 24 4
gpt4 key购买 nike

<分区>

我有以下 gulp 任务:

// Compile ES6 to ES5 and copy to dist
gulp.task('babel', () =>
gulp.src([...paths.js, '!gulpfile.babel.js'], { base: '.' })
.pipe(plugins.newer('dist'))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.babel())
.pipe(plugins.sourcemaps.write('.', {
includeContent: false,
sourceRoot(file) {
return path.relative(file.path, __dirname);
}
}))
.pipe(gulp.dest('dist'))
);

根据 Gulp Doc( gulp.src ) 我了解到 gulp.src发出与提供的 glob 或 glob 数组匹配的文件。
但是我在这里无法理解'...paths.js'的含义。项目目录中没有名为“paths.js”的文件。

有没有人可以帮助我理解它?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com