Skip to content

Commit

Permalink
build(examples): update example build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 2, 2018
1 parent 2926779 commit 309c7d7
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 10 deletions.
2 changes: 2 additions & 0 deletions examples/dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ cd umbrella/examples/dashboard
yarn install
yarn dev
```

Once webpack has completed building, refresh your browser...
5 changes: 3 additions & 2 deletions examples/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack -w",
"clean": "rm -rf bundle.*"
"build": "yarn clean && webpack",
"clean": "rm -rf bundle.*",
"dev": "open index.html && webpack -w"
},
"devDependencies": {
"ts-loader": "^3.3.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/hdom-basics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ yarn install
yarn dev
```

Then open `index.html` in your browser...
Once webpack has completed building, refresh your browser...
7 changes: 4 additions & 3 deletions examples/hdom-basics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack -w",
"clean": "rm -rf bundle.*"
"build": "yarn clean && webpack",
"clean": "rm -rf bundle.*",
"dev": "open index.html && webpack -w"
},
"devDependencies": {
"ts-loader": "^3.3.1",
Expand All @@ -19,4 +20,4 @@
"@thi.ng/rstream": "^0.9.1",
"@thi.ng/transducers": "^1.0.6"
}
}
}
2 changes: 2 additions & 0 deletions examples/hdom-benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ cd umbrella/examples/hdom-benchmark
yarn install
yarn dev
```

Once webpack has completed building, refresh your browser...
5 changes: 3 additions & 2 deletions examples/hdom-benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack -w",
"clean": "rm -rf bundle.*"
"build": "yarn clean && webpack",
"clean": "rm -rf bundle.*",
"dev": "open index.html && webpack -w"
},
"devDependencies": {
"ts-loader": "^3.3.1",
Expand Down
2 changes: 2 additions & 0 deletions examples/todo-list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ cd umbrella/examples/todo-list
yarn install
yarn dev
```

Once webpack has completed building, refresh your browser...
5 changes: 3 additions & 2 deletions examples/todo-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "webpack -w",
"clean": "rm -rf bundle.*"
"build": "yarn clean && webpack",
"clean": "rm -rf bundle.*",
"dev": "open index.html && webpack -w"
},
"devDependencies": {
"ts-loader": "^3.3.1",
Expand Down

0 comments on commit 309c7d7

Please sign in to comment.