parent
b965698fdf
commit
793b651393
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
var gulp = require('gulp'),
|
||||
uglify = require('gulp-uglify');
|
||||
var concat = require('gulp-concat');
|
||||
|
||||
gulp.task('minify', function () {
|
||||
gulp.src(['angular.js', 'angular-route.js', 'angular-cookies.js', 'angular-sanitize.min.js'])
|
||||
.pipe(uglify())
|
||||
.pipe(concat('angular.all.min.js'))
|
||||
.pipe(gulp.dest('build'))
|
||||
});
|
Loading…
Reference in new issue