Skip to content

Commit

Permalink
chore: adjust command dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bytemain committed Sep 12, 2023
1 parent 74b7a07 commit be6e9c9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"scripts": {
"format": "prettier --write '**/*.{js,css,json,md}'",
"ts:check": "tsc -p ./tsconfig.build.json --noEmit",
"tsc:build": "wireit",
"build": "wireit",
"build:libs": "wireit",
"build:cfworker": "wireit",
Expand All @@ -40,11 +40,16 @@
"build:libs": {
"command": "lerna run build --stream --scope @opensumi/*"
},
"tsc:build": {
"command": "tsc -p ./tsconfig.build.json --noEmit",
"dependencies": [
"build:libs"
]
},
"build": {
"command": "run-p build:cfworker build:node",
"dependencies": [
"build:libs",
"ts:check",
"tsc:build",
"gen"
]
},
Expand Down

0 comments on commit be6e9c9

Please sign in to comment.