We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7f2329 commit 45eed2fCopy full SHA for 45eed2f
gulpfile.js
@@ -0,0 +1,13 @@
1
+var gulp = require('gulp');
2
+var ngAnnotate = require('gulp-ng-annotate');
3
+var uglify = require('gulp-uglify');
4
+
5
+gulp.task('default', ['build'], function () {
6
+});
7
8
+gulp.task('build', function () {
9
+ return gulp.src('static/javascripts/**/*.js')
10
+ .pipe(ngAnnotate())
11
+ .pipe(uglify())
12
+ .pipe(gulp.dest('dist/static/javascripts/'));
13
0 commit comments