We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78e0f6 commit 69c88faCopy full SHA for 69c88fa
1 file changed
app/templates/gulpfile.babel.js
@@ -1,6 +1,7 @@
1
// Generated on <%= (new Date).toISOString().split('T')[0] %> using <%= pkg.name %> <%= pkg.version %>
2
'use strict';
3
4
+import _ from '_';
5
import gulp from 'gulp';
6
import path from 'path';
7
import gulpLoadPlugins from 'gulp-load-plugins';
@@ -120,7 +121,7 @@ gulp.task('coffee', () =>
120
121
.pipe(gulp.dest('.tmp/scripts'));
122
);<% } %>
123
-gulp.task('lint:scripts', () => gulp.src(paths.client.scripts.concat(paths.server.scripts)).pipe(lintScripts()));
124
+gulp.task('lint:scripts', () => gulp.src(_.union(paths.client.scripts, paths.server.scripts)).pipe(lintScripts()));
125
126
gulp.task('clean:tmp', () => gulp.src('.tmp', {read: false}).pipe(plugins.clean()));
127
0 commit comments