Skip to content

Commit

Permalink
Watch now compiles concat again
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Feb 19, 2015
1 parent 14171cd commit 74a52c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tasks/watch.js
Expand Up @@ -72,7 +72,6 @@ module.exports = function(callback) {

gulp
.watch([
'src/**/*.less',
source.config,
source.definitions + '/**/*.less',
source.site + '/**/*.{overrides,variables}',
Expand Down Expand Up @@ -157,7 +156,7 @@ module.exports = function(callback) {
.pipe(gulp.dest(output.uncompressed))
.pipe(print(log.created))
.on('end', function() {
//gulp.start('package uncompressed css');
gulp.start('package uncompressed css');
})
;

Expand All @@ -170,7 +169,7 @@ module.exports = function(callback) {
.pipe(gulp.dest(output.compressed))
.pipe(print(log.created))
.on('end', function() {
//gulp.start('package compressed css');
gulp.start('package compressed css');
})
;

Expand Down

0 comments on commit 74a52c5

Please sign in to comment.