Skip to content

Commit

Permalink
fix(gulp:inject:css): fix string that should be template string
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed Dec 29, 2015
1 parent c0708ce commit bb92502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/gulpfile.babel(gulp).js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ gulp.task('inject:js', () => {
gulp.task('inject:css', () => {
return gulp.src(paths.client.mainView)
.pipe(plugins.inject(
gulp.src('/${clientPath}/{app,components}/**/*.css', {read: false})
gulp.src(`/${clientPath}/{app,components}/**/*.css`, {read: false})
.pipe(plugins.sort()),
{
starttag: '<!-- injector:css -->',
Expand Down

0 comments on commit bb92502

Please sign in to comment.