Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/node-contract-deploy-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@types/node": "^22.19.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
2 changes: 1 addition & 1 deletion examples/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"devDependencies": {
"@types/node": "^22.19.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
"typescript": "^6.0.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Declare Node types for the example builds

TypeScript 6 also changes the default types list to empty, but this Node example's tsconfig does not list "node" while signInFlow.ts relies on process and node:readline/promises; pnpm build:node-example now reports TS2591 asking to add Node to types. The contract deploy example has the same Node-only pattern, so the bump should include tsconfig updates for these examples.

Useful? React with 👍 / 👎.

}
}
2 changes: 1 addition & 1 deletion examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}
2 changes: 1 addition & 1 deletion examples/trails-actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}
2 changes: 1 addition & 1 deletion examples/wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"devDependencies": {
"dotenv": "^17.4.2",
"typescript": "^5.5.3",
"typescript": "^6.0.3",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add --ignoreConfig to the type-test invocation

With this TypeScript 6 bump, pnpm test fails when it reaches the existing test:types script because that command passes type-tests/oidcProviderTypes.ts as a command-line file while a root tsconfig.json exists; TS 6 now exits with TS5112 unless --ignoreConfig is supplied. I verified the script with tsc 6.0.3, so please migrate that command or keep TypeScript 5 until it is updated.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Migrate the ESM build config before bumping TypeScript

The CI Build SDK and Pages workflows run pnpm build, which invokes tsc -p tsconfig.esm.json; under TypeScript 6, that config's moduleResolution: "Node" is treated as deprecated node10 and exits with TS5107 unless it is migrated or explicitly silenced. I verified tsc -p tsconfig.esm.json with 6.0.3 fails on tsconfig.esm.json(5,25), so this dependency bump breaks the SDK build.

Useful? React with 👍 / 👎.

"vitest": "^4.1.5"
}
}
2 changes: 1 addition & 1 deletion packages/oms-wallet-wagmi-connector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"devDependencies": {
"@0xsequence/typescript-sdk": "workspace:*",
"@wagmi/core": "^3.5.0",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"viem": "^2.48.4",
"vitest": "^4.1.5"
}
Expand Down
1,340 changes: 675 additions & 665 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading