Skip to content

Commit 3242fee

Browse files
Dev update.
1 parent 252467a commit 3242fee

File tree

2 files changed

+228
-1
lines changed

2 files changed

+228
-1
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
"build:types": "cpy \"src/**/*.d.ts\" dist/types --parents && tsc -p tsconfig.types.json",
2222
"build:esm": "rollup -c rollup.config.js",
2323
"build:cjs": "tsc -p tsconfig.cjs.json",
24-
"build": "pnpm clean && pnpm build:types && pnpm build:esm && pnpm build:cjs",
24+
"build": "pnpm clean && pnpm build:types && pnpm build:esm && pnpm build:cjs && pnpm typecheck:tests",
2525
"test": "vitest run",
2626
"typecheck": "tsc --noEmit",
27+
"typecheck:tests": "tsc -p tests/tsconfig.json --noEmit",
2728
"lint": "eslint src/**/*.ts",
2829
"docs": "rimraf docs && typedoc --options typedoc.json --readme none",
2930
"bump": "pnpm run precommit && pnpm version patch",
@@ -45,6 +46,7 @@
4546
"@rollup/plugin-node-resolve": "^16.0.1",
4647
"@rollup/plugin-typescript": "^12.1.4",
4748
"@types/node": "^24.3.0",
49+
"@vitest/coverage-v8": "^3.2.4",
4850
"cpy-cli": "^6.0.0",
4951
"eslint": "^9.34.0",
5052
"rimraf": "^6.0.1",

0 commit comments

Comments
 (0)