Skip to content

Commit

Permalink
Fix yarn dev (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
flybayer authored May 5, 2020
1 parent 2d8e331 commit 6cd3abe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"scripts": {
"b": "./bin/run",
"predev": "wait-on -d 500 ../server/dist/packages/server/src/index.d.ts",
"predev": "wait-on -d 500 ../server/dist/packages/server/src/index.d.ts && wait-on ../generator/dist/packages/generator/src/index.d.ts",
"dev": "rimraf lib && tsc --watch --preserveWatchOutput",
"build": "rimraf lib && tsc",
"lint": "tsdx lint",
Expand Down
1 change: 1 addition & 0 deletions packages/generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"register"
],
"scripts": {
"predev": "wait-on -d 500 ../server/dist/packages/server/src/index.d.ts",
"dev": "tsdx watch --verbose",
"build": "tsdx build && yarn build:templates",
"build:templates": "rimraf templates/**/node_modules && cpy --dot --parents '!/node_modules/' templates dist",
Expand Down

0 comments on commit 6cd3abe

Please sign in to comment.