Skip to content

Commit

Permalink
Comment out unused 'clean-cache' task in gulpfie.js.
Browse files Browse the repository at this point in the history
  • Loading branch information
panteng committed Apr 13, 2016
1 parent 490506f commit 61a768f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var autoprefixer = require('gulp-autoprefixer');
var browserify = require('gulp-browserify');
var browserSync = require('browser-sync').create();
var cache = require('gulp-cache');
// var cache = require('gulp-cache');
var concat = require('gulp-concat');
var del = require('del');
var gulp = require('gulp');
Expand Down Expand Up @@ -149,9 +149,9 @@ gulp.task('clean-files', function(cb) {
});

// delete cache
gulp.task('clean-cache', function (cb) {
return cache.clearAll(cb)
});
// gulp.task('clean-cache', function (cb) {
// return cache.clearAll(cb)
// });

// development workflow task
gulp.task('dev', function (cb) {
Expand Down

0 comments on commit 61a768f

Please sign in to comment.