HTMLファイルを取得し、その中のスクリプトを見つけ、それらを縮小し、リビジョンを適用し、アセットフォルダー内のすべてを出力するgulpタスクがあります。
templates/index.html
<!-- build:js js/app.js -->
<script src="lib/js/a.js"></script>
<script src="lib/js/b.js"></script>
<!--endbuild -->
gulpfile.js
var useref = require('gulp-useref'),
filter = require('gulp-filter'),
uglify = require('gulp-uglify'),
rev = require('gulp-rev'),
revReplace = require('gulp-rev-replace');
gulp.task('build',function() {
var assets = useref.assets({searchPath: './'}),
jsapp = filter('**/app.js'),
return gulp
.src(gulp.src('templates/index_src.html'))
// collect all assets from source file by the means of useref
.pipe(assets)
//build js/app.js
.pipe(jsapp)
.pipe(uglify())
.pipe(jsapp.restore())
// Take inventory of the file names for future rev numbers
.pipe(rev())
// Apply the concat and file replacement with useref
.pipe(assets.restore())
.pipe(useref())
// Replace the file names in the html with rev numbers
.pipe(revReplace())
// output files
.pipe(gulp.dest('./'));
});
これは正常に機能しますが、すべて (js/app.js および index.html) をルート ディレクトリ (./) に出力します。
内部で条件を適用し、gulp.dest
js/app.js をプロジェクトのルート フォルダーに出力し、index.html を別の場所 (例./templates_cache
) に出力する方法はありますか?