Skip to content

Commit

Permalink
fix(build): fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
klarkc committed Oct 29, 2017
1 parent 8c3cc51 commit 2d4bb0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template/gulp-tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gulp.task('build:client', ['copy:client'], () => {
b.plugin(modulesify, {
output: path.resolve(
dirs.buildClient,
'bundle.css',
'bundle.css'
),
global: true,
generateScopedName: function(name, filename) {
Expand All @@ -42,7 +42,7 @@ gulp.task('build:client', ['copy:client'], () => {
} else {
return modulesify.generateLongName(name, filename);
}
}
},
});

return b.bundle()
Expand Down

0 comments on commit 2d4bb0f

Please sign in to comment.