我想将gulp-useref用于concant js文件,其顺序与index.html相同。
解决方案具有以下结构:
的index.html
<script src = "scripts/angular.js"></script>
<script src = "app/services/service.js"></script>
咕嘟咕嘟
gulp.src("index.html")
.pipe(useref())
.pipe(gulpif('*.js', uglify()))
.pipe(concant("app.js"))
.pipe(gulp.dest(config.dist + "/app"));
当我运行此gulp任务时,app.js文件已创建,但包含index.html的内容。
我做错了什么?