Skip to content

Commit

Permalink
fix(build): debug windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamensuli committed Jan 19, 2024
1 parent 5598914 commit 60a59d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"javascript"
],
"scripts": {
"install": "npm --prefix ./src/core install ; npm --prefix ./src/packages install",
"install": "npm --prefix ./src/core install && npm --prefix ./src/packages install",
"prebuild": "mkdirp tmp",
"build": "npm run --prefix ./src/core build; npm run --prefix ./src/packages build",
"test": "npm run --prefix ./src/core test; npm --prefix ./src/packages test",
"dev": "npm run --prefix ./src/core dev; npm --prefix ./src/packages dev",
"build": "npm run --prefix ./src/core build && npm run --prefix ./src/packages build",
"test": "npm run --prefix ./src/core test && npm --prefix ./src/packages test",
"dev": "npm run --prefix ./src/core dev && npm --prefix ./src/packages dev",
"certificates": "bash bin/generateCertificates.sh"
},
"workspaces": [
Expand Down

0 comments on commit 60a59d0

Please sign in to comment.