Skip to content

Commit 280f90c

Browse files
committed
Update build system and dependencies
1 parent b495563 commit 280f90c

File tree

6 files changed

+138
-136
lines changed

6 files changed

+138
-136
lines changed

configurations/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4-
"lib": ["ES2020"],
5-
"target": "ES2020",
4+
"lib": ["ES2023"],
5+
"target": "ES2023",
66
"module": "NodeNext",
77
"moduleResolution": "NodeNext",
88
"esModuleInterop": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"octokit-plugin-create-pull-request": "^3.12.2",
7575
"pathe": "1.1.1",
7676
"pin-github-action": "^3.3.1",
77-
"react": "17.0.2",
77+
"react": "19.1.0",
7878
"rimraf": "^3.0.2",
7979
"tmp": "^0.2.4",
8080
"ts-node": "^10.9.1",

packages/app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
"http-proxy-node16": "1.0.6",
7070
"ignore": "6.0.2",
7171
"proper-lockfile": "4.1.2",
72-
"react": "^18.2.0",
73-
"react-dom": "18.3.1",
72+
"react": "^19.1.0",
73+
"react-dom": "19.1.0",
7474
"which": "4.0.0",
7575
"ws": "8.18.0"
7676
},
@@ -79,8 +79,8 @@
7979
"@types/diff": "^5.0.3",
8080
"@types/express": "^4.17.17",
8181
"@types/proper-lockfile": "4.1.4",
82-
"@types/react": "18.2.0",
83-
"@types/react-dom": "18.2.0",
82+
"@types/react": "19.1.0",
83+
"@types/react-dom": "19.1.0",
8484
"@types/which": "3.0.4",
8585
"@types/ws": "^8.5.13",
8686
"@vitest/coverage-istanbul": "^3.1.4"

packages/cli-kit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"graphql": "16.10.0",
137137
"graphql-request": "6.1.0",
138138
"ignore": "6.0.2",
139-
"ink": "4.4.1",
139+
"ink": "6.3.1",
140140
"is-executable": "2.0.1",
141141
"is-interactive": "2.0.0",
142142
"is-wsl": "3.1.0",
@@ -152,7 +152,7 @@
152152
"node-fetch": "3.3.2",
153153
"open": "8.4.2",
154154
"pathe": "1.1.2",
155-
"react": "^18.2.0",
155+
"react": "^19.1.0",
156156
"semver": "7.6.3",
157157
"simple-git": "3.27.0",
158158
"stacktracey": "2.1.8",

packages/cli-kit/src/public/node/error.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ export abstract class FatalError extends Error {
7272
* Those usually represent unexpected scenarios that we can't handle and that usually require some action from the developer.
7373
*/
7474
export class AbortError extends FatalError {
75-
nextSteps?: TokenItem<InlineToken>[]
76-
customSections?: AlertCustomSection[]
77-
7875
constructor(
7976
message: TokenItem | OutputMessage,
8077
tryMessage: TokenItem | OutputMessage | null = null,

0 commit comments

Comments
 (0)