File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ gulp.task('inject', cb => {
132132} ) ;
133133
134134gulp . 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
147147gulp . 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
316316gulp . task ( 'wiredep:client' , ( ) => {
317- return gulp . src ( paths . mainView )
317+ return gulp . src ( paths . client . mainView )
318318 . pipe ( wiredep ( {
319319 exclude : [
320320 / b o o t s t r a p - s a s s - o f f i c i a l / ,
You can’t perform that action at this time.
0 commit comments