Skip to content

Commit dda6d2c

Browse files
stillesjoAwk34
authored andcommitted
Corrects references to main view
1 parent 16e98a2 commit dda6d2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/templates/gulpfile.babel(gulp).js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ gulp.task('inject', cb => {
132132
});
133133

134134
gulp.task('inject:js', () => {
135-
return gulp.src(paths.mainView)
135+
return gulp.src(paths.client.mainView)
136136
.pipe(plugins.inject(
137137
gulp.src(_.union(paths.client.scripts, ['!client/**/*.spec.<%= scriptExt %>']), {read: false})
138138
.pipe(plugins.sort())
@@ -145,7 +145,7 @@ gulp.task('inject:js', () => {
145145
});
146146

147147
gulp.task('inject:css', () => {
148-
return gulp.src(paths.mainView)
148+
return gulp.src(paths.client.mainView)
149149
.pipe(plugins.inject(
150150
gulp.src('/client/**/*.css', {read: false})
151151
.pipe(plugins.sort())
@@ -314,7 +314,7 @@ gulp.task('test:client', () => {
314314

315315
// inject bower components
316316
gulp.task('wiredep:client', () => {
317-
return gulp.src(paths.mainView)
317+
return gulp.src(paths.client.mainView)
318318
.pipe(wiredep({
319319
exclude: [
320320
/bootstrap-sass-official/,

0 commit comments

Comments
 (0)