Skip to content

Commit 6f4d3b0

Browse files
committed
fix(gulp): update gulp.src in build:client
update `build:client` so that `gulp.src` points to `paths.client.mainView`
1 parent 0a9afa1 commit 6f4d3b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ gulp.task('build:client', ['transpile:client', 'styles', 'html'], () => {
394394

395395
let assets = plugins.useref.assets({searchPath: ['client', '.tmp']});
396396

397-
return gulp.src(paths.mainView)<% if(filters.jade) { %>
397+
return gulp.src(paths.client.mainView)<% if(filters.jade) { %>
398398
.pipe(plugins.jade({pretty: true}))<% } %>
399399
.pipe(assets)
400400
.pipe(appFilter)

0 commit comments

Comments
 (0)