index.htmlと同じ順序で連結jsファイルにgulp -userrefを使用したいと思います。
ソリューションの構造は次のとおりです。
- ソリューション フォルダ
- アプリフォルダー
- サービス フォルダ
- 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 のコンテンツが含まれています。
私は何を間違っていますか?