Skip to content

Commit f11dcb1

Browse files
Update dependency typescript to v5 (#231)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Eric Lau <[email protected]>
1 parent 59e5e56 commit f11dcb1

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
lines changed

packages/core-cairo/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- Update to use TypeScript v5. ([#231](https://github.com/OpenZeppelin/contracts-wizard/pull/231))
6+
37
## 0.21.0 (2025-01-13)
48

59
- Add Vesting tab. ([#425](https://github.com/OpenZeppelin/contracts-wizard/pull/425))

packages/core-cairo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"ava": "^6.0.0",
3030
"rimraf": "^5.0.0",
3131
"ts-node": "^10.4.0",
32-
"typescript": "^4.9.0",
32+
"typescript": "^5.0.0",
3333
"semver": "^7.6.0"
3434
},
3535
"dependencies": {

packages/core/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
## Unreleased
44

5-
- Update Contracts Wizard license to AGPLv3. ([#424](https://github.com/OpenZeppelin/contracts-wizard/pull/424))
5+
- Update to use TypeScript v5. ([#231](https://github.com/OpenZeppelin/contracts-wizard/pull/231))
6+
7+
- **Breaking changes**:
8+
- Update Contracts Wizard license to AGPLv3. ([#424](https://github.com/OpenZeppelin/contracts-wizard/pull/424))
69

710
## 0.4.6 (2024-11-20)
811

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"semver": "^7.6.0",
3636
"solidity-ast": "^0.4.18",
3737
"ts-node": "^10.4.0",
38-
"typescript": "^4.9.0"
38+
"typescript": "^5.0.0"
3939
},
4040
"dependencies": {
4141
"array.prototype.flatmap": "^1.2.4"

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"svelte-preprocess": "^5.0.0",
3434
"tailwindcss": "^3.0.15",
3535
"tslib": "^2.0.0",
36-
"typescript": "^4.9.0"
36+
"typescript": "^5.0.0"
3737
},
3838
"dependencies": {
3939
"file-saver": "^2.0.5",

packages/ui/src/post-message.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SolcInputSources } from '@openzeppelin/wizard/get-imports';
1+
import type { SolcInputSources } from '@openzeppelin/wizard/get-imports';
22

33
export type Message = ResizeMessage | TabChangeMessage | UnsupportedVersionMessage | DefenderDeployMessage;
44

tsconfig.base.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"resolveJsonModule": true,
99
"lib": ["es2019", "es2019.array"],
1010
"forceConsistentCasingInFileNames": true,
11-
"importsNotUsedAsValues": "error",
1211
"isolatedModules": true
1312
},
1413
"ts-node": {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5605,10 +5605,10 @@ typed-array-length@^1.0.6:
56055605
is-typed-array "^1.1.13"
56065606
possible-typed-array-names "^1.0.0"
56075607

5608-
typescript@^4.9.0:
5609-
version "4.9.5"
5610-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
5611-
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
5608+
typescript@^5.0.0:
5609+
version "5.7.3"
5610+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
5611+
integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
56125612

56135613
typescript@^5.0.3:
56145614
version "5.6.3"

0 commit comments

Comments
 (0)