Skip to content

Commit

Permalink
fix: Run dev command on Windows (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
EnnoMeijers committed Sep 9, 2023
1 parent 6627da7 commit 0a0cc12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/network-of-terms-graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"compile": "npm run clean && tsc --build tsconfig.build.json",
"fix": "gts fix",
"start": "node --experimental-specifier-resolution=node build/main.js",
"dev": "tsc-watch --build tsconfig.build.json --onSuccess 'npm run start'",
"dev": "tsc-watch --build tsconfig.build.json --onSuccess \"npm run start\"",
"watch": "tsc --watch"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/network-of-terms-reconciliation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"clean": "rm -rf build/ tsconfig.build.tsbuildinfo",
"compile": "npm run clean && tsc --build tsconfig.build.json",
"start": "node --experimental-specifier-resolution=node build/main.js",
"dev": "tsc-watch --build tsconfig.build.json --onSuccess 'npm run start'",
"dev": "tsc-watch --build tsconfig.build.json --onSuccess \"npm run start\"",
"watch": "tsc --watch"
},
"type": "module",
Expand Down

0 comments on commit 0a0cc12

Please sign in to comment.