Skip to content

Commit 45eed2f

Browse files
author
James Brewer
committed
Add gulpfile.js.
1 parent c7f2329 commit 45eed2f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

gulpfile.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)