Change gulp-build for gulp-concat
Closed this issue · 0 comments
alexol91 commented
Example:
gulp.task('build:angular', function () {
return gulp.src('../app/index.html')
.pipe(inject(
gulp.src(['../app/app.js', '../app/components/**/*.js'])
.pipe(concat('app.min.js'))
.pipe(uglify())
.pipe(gulp.dest('../app/')),
))
.pipe(gulp.dest('../app'))
});