Skip to content

Commit

Permalink
prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zebapy committed Mar 1, 2018
1 parent 0682f60 commit 46ebff8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,17 @@ gulp.task('deploy', ['replace:imageurls'], () => {
return console.error('No `--themeDir` argument passed'); // eslint-disable-line no-console
}
return gulp
.src(['./dist/css/main.css', './dist/js/bundle.js', './dist/js/Chart.min.js', './dist/images/*'], {
.src(
[
'./dist/css/main.css',
'./dist/js/bundle.js',
'./dist/js/Chart.min.js',
'./dist/images/*'
],
{
base: './dist'
})
}
)
.pipe(gulp.dest(dest));
});

Expand Down

0 comments on commit 46ebff8

Please sign in to comment.