Skip to content

Commit ecfa56c

Browse files
committed
serve on default gulp
1 parent 5c05c9a commit ecfa56c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gulp/tasks/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gulp.task('default', cb => {
1010
runSequence(
1111
'build',
1212
'docs',
13-
// 'serve',
13+
'serve',
1414
'watch',
1515
cb
1616
);

gulp/tasks/serve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import statsConfig from '../../webpack-stats';
1313
import devEnv from '../../dev-env';
1414
import webpackConfig from '../../webpack.dev.babel';
1515

16-
gulp.task('serve-docs', 'serve, build (in memory only), and watch the app', cb => {
16+
gulp.task('serve', 'serve, build (in memory only), and watch the app', cb => {
1717
// http://webpack.github.io/docs/webpack-dev-server.html#api
1818
const devMiddlewareConfig = {
1919
contentBase: paths.docsBuild,

0 commit comments

Comments
 (0)