Skip to content

Commit 09d37fe

Browse files
committed
quick fixups to gulpfile
1 parent 757142a commit 09d37fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

gulpfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ gulp.task('cp:css', function(){
9696
// Styleguide Copy
9797
gulp.task('cp:styleguide', function(){
9898
return gulp.src(
99-
[ '**/*'],
100-
{cwd: path.resolve(paths().source.styleguide)} )
99+
['**/*'],
100+
{cwd: path.resolve(paths().source.styleguide)})
101101
.pipe(gulp.dest(path.resolve(paths().public.styleguide)))
102-
.pipe(browserSync.stream());;
102+
.pipe(browserSync.stream());
103103
});
104104

105105
//server and watch tasks
@@ -120,7 +120,7 @@ gulp.task('connect', ['lab'], function(){
120120
path.resolve(paths().source.data, '*.json'),
121121
path.resolve(paths().source.fonts + '/*'),
122122
path.resolve(paths().source.images + '/*'),
123-
path.resolve(paths().source.data + '*.json'),
123+
path.resolve(paths().source.data + '*.json')
124124
],
125125
['lab-pipe'],
126126
function () { browserSync.reload(); }

0 commit comments

Comments
 (0)