Skip to content

Commit 1db3f86

Browse files
authored
fix: update UI deps
1 parent 4efe462 commit 1db3f86

File tree

7 files changed

+15205
-9580
lines changed

7 files changed

+15205
-9580
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- name: Check out code
1818
uses: actions/checkout@v2
1919

20+
- name: Enable corepack
21+
run: corepack enable
22+
2023
- name: Install dependencies
2124
run: make deps
2225

@@ -25,4 +28,3 @@ jobs:
2528

2629
- name: Generate assets
2730
run: make static-assets
28-

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: Check out code
2020
uses: actions/checkout@v2
2121

22+
- name: Enable corepack
23+
run: corepack enable
24+
2225
- name: Install dependencies
2326
run: make deps
2427

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,12 @@ yarn-error.log*
2626

2727

2828
.idea/
29+
30+
# yarn berry with no zero-installs
31+
.pnp.*
32+
.yarn/*
33+
!.yarn/patches
34+
!.yarn/plugins
35+
!.yarn/releases
36+
!.yarn/sdks
37+
!.yarn/versions

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.7.0
1+
v22

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"license": "MIT",
66
"dependencies": {
77
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
8+
"@testing-library/dom": "^10.4.1",
89
"@testing-library/jest-dom": "^5.16.5",
910
"@testing-library/react": "^13.4.0",
1011
"@testing-library/user-event": "^13.5.0",
@@ -13,12 +14,12 @@
1314
"@types/react": "^18.2.9",
1415
"@types/react-dom": "^18.2.4",
1516
"@types/styled-components": "^5.1.26",
16-
"@typescript-eslint/eslint-plugin": "^5.59.9",
17-
"@typescript-eslint/parser": "^5.59.9",
18-
"eslint": "^8.42.0",
19-
"eslint-config-prettier": "^8.8.0",
20-
"eslint-plugin-import": "^2.27.5",
21-
"prettier": "^2.8.8",
17+
"@typescript-eslint/eslint-plugin": "^8.38.0",
18+
"@typescript-eslint/parser": "^8.38.0",
19+
"eslint": "^8.57.1",
20+
"eslint-config-prettier": "^10.1.8",
21+
"eslint-plugin-import": "^2.32.0",
22+
"prettier": "^3.6.2",
2223
"react": "^18.2.0",
2324
"react-dom": "^18.2.0",
2425
"react-scripts": "5.0.1",
@@ -27,6 +28,9 @@
2728
"web-vitals": "^2.1.4"
2829
},
2930
"scripts": {
31+
"format": "prettier './src/**/*.{ts,tsx}' --config .prettierrc.json --write",
32+
"lint": "eslint './src/**/*.{ts,tsx}'",
33+
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
3034
"start": "react-scripts start",
3135
"build": "react-scripts build",
3236
"test": "react-scripts test",
@@ -43,5 +47,6 @@
4347
"last 1 firefox version",
4448
"last 1 safari version"
4549
]
46-
}
50+
},
51+
"packageManager": "[email protected]"
4752
}

yarn.lock

Lines changed: 15176 additions & 9571 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)