为什么Gulp在判断文件时做错了(或者它没问题,但我需要别的东西)?
这是图像(例如左侧,我的脚本顺序和右侧的连接文件):
Notificator.js应该放在第一位......
文件夹通知器位于/ components / notificator中。这是我的gulpfile.js:
onPostExecute
答案 0 :(得分:0)
您可以将数组作为源传递,
gulp.src(['PATHTOFILE', 'PATHTOFILE'])
.pipe(concat('components.js'))
.pipe(gulp.dest('./htdocs/dist/js/'))
或者您可以使用名为gulp-useref的内容,基本上它会在html中运行您的decalare并按顺序连接它们。