diff --git a/gulpfile.js b/gulpfile.js index 16b7d7f..e77670d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -179,18 +179,16 @@ gulp.task('watch', function() { // Print paths to console, for manually debugging the gulp build // (comment out corresponding line of paths to print) gulp.task('log', function() { - //return gulp.src(paths.scripts) - //return gulp.src(paths.styles) - //return gulp.src(paths.images) - // return gulp.src(paths.locales) - return gulp - .src( - paths.scripts - .concat(paths.styles) - .concat(paths.images) - .concat(paths.locales) - ) - .pipe(gulpDebug()); + // var src = paths.scripts + // var src = paths.styles + // var src = paths.images + // var src = paths.locales + var src = paths.scripts + .concat(paths.styles) + .concat(paths.images) + .concat(paths.locales); + + return gulp.src(src).pipe(gulpDebug()); }); gulp.task('inject', function() {