Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Always call webpack before dev-server on npm start
Browse files Browse the repository at this point in the history
This fixes an issue where the initial bundle wouldnt be created on first run
  • Loading branch information
Dom Harrington committed Jan 24, 2018
1 parent 04f9056 commit 4010334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"scripts": {
"test": "eslint -f unix example && lerna run test --parallel",
"start": "node scripts/update-example-swagger-files && webpack-dev-server",
"start": "node scripts/update-example-swagger-files && webpack && webpack-dev-server",
"build": "./build.sh & lerna run build",
"watch": "lerna run watch --stream",
"deploy": "gh-pages --dotfiles -d example/dist",
Expand Down

0 comments on commit 4010334

Please sign in to comment.