Rework gulpfile log command
This commit is contained in:
parent
6a68482c0b
commit
afbd93c61d
1 changed files with 10 additions and 12 deletions
18
gulpfile.js
18
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
|
||||
// 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)
|
||||
)
|
||||
.pipe(gulpDebug());
|
||||
.concat(paths.locales);
|
||||
|
||||
return gulp.src(src).pipe(gulpDebug());
|
||||
});
|
||||
|
||||
gulp.task('inject', function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue