Skip to content

Commit 0171112

Browse files
committed
fix(gulp): make sure tests and main app file are not injected
filter out tests and `app.js` from the script files injected into `index.html`
1 parent bb67961 commit 0171112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ gulp.task('inject', cb => {
212212
gulp.task('inject:js', () => {
213213
return gulp.src(paths.client.mainView)
214214
.pipe(plugins.inject(
215-
gulp.src(_.union(paths.client.scripts, [`!${clientPath}/**/*.spec.<%= scriptExt %>`]), {read: false})
215+
gulp.src(_.union(paths.client.scripts, [`!${clientPath}/**/*.{spec,mock}.js`, `!${clientPath}/app/app.js`]), {read: false})
216216
.pipe(plugins.sort(sortModulesFirst)),
217217
{
218218
starttag: '<!-- injector:js -->',

0 commit comments

Comments
 (0)