Skip to content

Commit 2d4bb0f

Browse files
committed
fix(build): fix syntax errors
1 parent 8c3cc51 commit 2d4bb0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/gulp-tasks/build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gulp.task('build:client', ['copy:client'], () => {
3131
b.plugin(modulesify, {
3232
output: path.resolve(
3333
dirs.buildClient,
34-
'bundle.css',
34+
'bundle.css'
3535
),
3636
global: true,
3737
generateScopedName: function(name, filename) {
@@ -42,7 +42,7 @@ gulp.task('build:client', ['copy:client'], () => {
4242
} else {
4343
return modulesify.generateLongName(name, filename);
4444
}
45-
}
45+
},
4646
});
4747

4848
return b.bundle()

0 commit comments

Comments
 (0)