Skip to content

Commit bb92502

Browse files
committed
fix(gulp:inject:css): fix string that should be template string
1 parent c0708ce commit bb92502

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
@@ -217,7 +217,7 @@ gulp.task('inject:js', () => {
217217
gulp.task('inject:css', () => {
218218
return gulp.src(paths.client.mainView)
219219
.pipe(plugins.inject(
220-
gulp.src('/${clientPath}/{app,components}/**/*.css', {read: false})
220+
gulp.src(`/${clientPath}/{app,components}/**/*.css`, {read: false})
221221
.pipe(plugins.sort()),
222222
{
223223
starttag: '<!-- injector:css -->',

0 commit comments

Comments
 (0)