Skip to content

Commit

Permalink
fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Aug 13, 2024
1 parent b68594e commit 41e2100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"build": "buildc -- tsup src/index.ts src/page.ts --clean --out-dir lib --dts --format esm,cjs,iife --global-name webExtCoreMessaging",
"test": "buildc --deps-only -- vitest -r src",
"test:coverage": "buildc --deps-only -- vitest run -r src --coverage",
"check": "buildc --deps-only -- vitest typecheck"
"check": "buildc --deps-only -- tsc --noEmit"
},
"dependencies": {
"webextension-polyfill": "^0.10.0",
Expand Down
4 changes: 3 additions & 1 deletion packages/proxy-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
"build": "buildc -- tsup src/index.ts --clean --out-dir lib --dts --format esm,cjs,iife --global-name webExtCoreProxyService",
"test": "buildc --deps-only -- vitest -r src",
"test:coverage": "buildc --deps-only -- vitest run -r src --coverage",
"check": "buildc --deps-only -- tsc --noEmit"
"check": "buildc --deps-only -- bun check:typescript && bun check:type-tests",
"check:typescript": "tsc --noEmit",
"check:type-tests": "vitest run --typecheck types"
},
"dependencies": {
"get-value": "^3.0.1",
Expand Down

0 comments on commit 41e2100

Please sign in to comment.