summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-06-27 09:52:06 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-06-27 09:52:06 -0400
commit319d4cb6670729708c19ad50b0146d1bcb7b4719 (patch)
treec61e9723a1fd217b1816c987bba66e470e73bf02 /gulpfile.js
parentfdc42fae48db0fef5fbdc9ef51a27d219aea3a72 (diff)
Added ability to log key events to file and email (useful for release debugging)
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 3a2770d3..4bd6933c 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -6,11 +6,9 @@ var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
-var templateCache = require('gulp-angular-templatecache');
var paths = {
sass: ['./scss/**/*.scss'],
-templatecache: ['./www/templates/**/*.html']
};
gulp.task('default', ['sass']);
@@ -53,16 +51,7 @@ gulp.task('git-check', function(done) {
done();
});
-gulp.task('templatecache', function (done) {
- gulp.src('./www/templates/**/*.html')
- .pipe(templateCache({standalone:true}))
- .pipe(gulp.dest('./www/js'))
- .on('end', done);
- });
-
- gulp.task('default', ['sass', 'templatecache']);
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
- gulp.watch(paths.templatecache, ['templatecache']);
});