gulp を使用して、異なる js ファイルを異なる html に整理する方法は?
私ができる唯一の方法は、各ページをgulpタスクに定義することですか? または、ファイルを自動的に検出できるより良い方法がありますか?
これが私の状況です。
私は2つのHTML「index.html」、「content.html」を持っています
index.html
必要plugin_A.js
content.html
必要plugin_B.js
そして私のgulpファイル:
gulp.task('index_concat', function() {
return gulp.src('./app/js/plugin_A.js')
.pipe(concat('index.js'))
.pipe(gulp.dest('./build/js/'));
});
gulp.task('content_concat', function() {
return gulp.src('./app/js/plugin_B.js')
.pipe(concat('content.js'))
.pipe(gulp.dest('./build/js/'));
});
100 ページだったら、タスクが大きすぎた!!! これは各ページを定義する愚かな方法だと思いますが、改善する方法がわかりません。アドバイスをお願いします。