Skip to content

Commit 08c4a1b

Browse files
committed
chore: wip
chore: wip
1 parent 9113c99 commit 08c4a1b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"dev:docs": "bun vitepress dev docs",
2727
"build:docs": "bun vitepress build docs",
2828
"preview:docs": "bun vitepress preview docs",
29-
"typecheck": "bun tsc --noEmit"
29+
"typecheck": "bun --bun tsc --noEmit"
3030
},
3131
"devDependencies": {
3232
"@stacksjs/docs": "^0.70.23",

packages/launchpad/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"lint:fix": "bunx --bun eslint . --fix",
6161
"prepublishOnly": "bun run build && bun run compile:all && bun run zip",
6262
"test": "bun test",
63-
"typecheck": "bun tsc --noEmit --skipLibCheck"
63+
"typecheck": "bun --bun tsc --noEmit --skipLibCheck"
6464
},
6565
"dependencies": {
6666
"bunfig": "^0.10.1",

packages/launchpad/test/ts-pkgx-integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ describe('ts-pkgx Integration', () => {
130130

131131
// The deduplication should keep only the newer version
132132
// This tests the core logic without needing the actual function export
133-
const domains = new Set()
134-
const deduplicated = []
133+
const domains = new Set<string>()
134+
const deduplicated: typeof packageSpecs = []
135135

136136
for (const pkg of packageSpecs) {
137137
if (!domains.has(pkg.name)) {

0 commit comments

Comments
 (0)