Skip to content

Commit

Permalink
Add gulpfile.js.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brewer committed May 19, 2007
1 parent c7f2329 commit 45eed2f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
var gulp = require('gulp');
var ngAnnotate = require('gulp-ng-annotate');
var uglify = require('gulp-uglify');

gulp.task('default', ['build'], function () {
});

gulp.task('build', function () {
return gulp.src('static/javascripts/**/*.js')
.pipe(ngAnnotate())
.pipe(uglify())
.pipe(gulp.dest('dist/static/javascripts/'));
});

0 comments on commit 45eed2f

Please sign in to comment.