本番環境でJSファイルを縮小するタスクがあります
function scriptsToMinify() {
if(require('yargs').argv.production)
{
return gulp.src(src.JSFile)
.pipe(sourcemaps.init())
.pipe(ngAnnotate(
{
remove: true,
add: true,
single_quotes: true
}))
.pipe(concat('app.min.js'))
.pipe(uglify())
.on('error', function (err) { gutil.log(gutil.colors.red('[Error]'), err.toString()); })
.pipe(sourcemaps.write())
.pipe(gulp.dest('public'));
}
}
ローカルで実行すると、依存タスクが実行されません
gulp.task('inject-scripts', gulp.series(scriptsToMinify, function() {
var thridPartyScripts = gulp.src(src.thirdPartyJS, { read: false })
var scripts = gulp.src([src.app_js, src.directiveJS], { read: false })
return gulp.src('views/index.html')
.pipe(inject(series(thridPartyScripts, scripts))) // Inject files in an order to run the application without any dependency error.
.pipe(cachebust({ // Add the timestamp to the injected files to avoid cache issue
type: 'timestamp'
}))
.pipe(gulp.dest('views'));
});
上記のタスクは、以下のエラーをスローしています。
The following tasks did not complete: default, inject-scripts, scriptsToMinify
Did you forget to signal async completion?