Skip to content

Commit

Permalink
Fix typo in docs/dev-run
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKVal committed May 13, 2015
1 parent ed29cf8 commit 791c93c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/dev-run
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ portfinder.getPorts(2, {}, (portFinderErr, [docsPort, webpackPort]) => {
process.exit(1);
}

runCmd('webpack-dev-server', `nodemon --watch webpack --watch webpack.config.js --watch node_modules --exec webpack-dev-server -- --config webpack.docs.js --color --port ${webpackPort} --debug --hot`);
runCmd('webpack-dev-server', `nodemon --watch webpack --watch webpack.docs.js --watch node_modules --exec webpack-dev-server -- --config webpack.docs.js --color --port ${webpackPort} --debug --hot`);

runCmd('docs-server', 'nodemon --watch docs --watch src --watch node_modules --exec babel-node docs/server.js', {
env: {
Expand All @@ -75,4 +75,3 @@ portfinder.getPorts(2, {}, (portFinderErr, [docsPort, webpackPort]) => {
}
});
});

0 comments on commit 791c93c

Please sign in to comment.