gulp concat javascript文件的顺序与index.html相同

时间:2015-12-19 19:13:47

标签: javascript gulp gulp-concat gulp-useref

我想将gulp-useref用于concant js文件,其顺序与index.html相同。

解决方案具有以下结构:

  • 解决方案文件夹
    • 应用程序文件夹
      • 服务文件夹
        • service.js
    • 脚本文件夹
      • angular.js

的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的内容。

我做错了什么?

0 个答案:

没有答案