Skip to content

Commit e388366

Browse files
committed
Update build scripts to use explicit tsgo build flag
1 parent bf275d0 commit e388366

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
"./package.json": "./package.json"
2929
},
3030
"scripts": {
31-
"build": "pnpm run clean:dist && tsgo",
31+
"build": "pnpm run clean:dist && tsgo --build",
3232
"check": "run-p -c --aggregate-output check:*",
3333
"check:lint": "eslint --report-unused-disable-directives .",
3434
"check:lint:fix": "pnpm run check:lint -- --fix",
35-
"check:tsc": "tsgo --noEmit -p tsconfig.check.json",
35+
"check:tsc": "pnpm run build && tsgo --noEmit -p tsconfig.check.json",
3636
"check-ci": "pnpm run check:lint",
3737
"coverage": "run-s coverage:*",
38-
"coverage:test": "run-s test:prepare test:unit:coverage",
38+
"coverage:test": "run-s pretest:unit test:unit:coverage",
3939
"coverage:type": "type-coverage",
4040
"coverage:type:verbose": "type-coverage --detail",
4141
"coverage:percent": "node scripts/get-coverage-percentage.mjs",

0 commit comments

Comments
 (0)