Skip to content

Commit

Permalink
added a watch target
Browse files Browse the repository at this point in the history
  • Loading branch information
basarat committed Feb 18, 2015
1 parent 7cd66e8 commit 8832b5e
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/multipleCompileTargets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "index.js",
"scripts": {
"serve": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server",
"prod": "node ./node_modules/webpack/bin/webpack -p"
"prod": "node ./node_modules/webpack/bin/webpack -p",
"watch": "node ./node_modules/webpack/bin/webpack --watch"
},
"author": "",
"license": "ISC",
Expand Down
78 changes: 77 additions & 1 deletion examples/multipleCompileTargets/src/server/client/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ export class Awesome {
console.log('awesome2');
console.log('awesome3');
console.error('error');
console.log('awesome4');
console.log('awesome5');
}
}

0 comments on commit 8832b5e

Please sign in to comment.