Skip to content

Commit e376e10

Browse files
committed
chore: upgrade toolchain
1 parent adafb6e commit e376e10

File tree

5 files changed

+346
-315
lines changed

5 files changed

+346
-315
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
jobs:
55
build:
66
docker:
7-
- image: cimg/node:20.3.0
7+
- image: cimg/node:20.10.0
88

99
steps:
1010
- checkout

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "test:debug <file>",
6+
"port": 9229,
7+
"request": "attach",
8+
"skipFiles": ["<node_internals>/**"],
9+
"type": "node",
10+
"preLaunchTask": "test:debug <file>"
11+
}
12+
]
13+
}

.vscode/tasks.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"options": {
7+
"shell": {
8+
"executable": "bash",
9+
"args": ["-c", "-l"]
10+
}
11+
},
12+
"command": "pnpm",
13+
"isBackground": false,
14+
"group": "test",
15+
"presentation": {
16+
"panel": "dedicated",
17+
"clear": true
18+
},
19+
"label": "test <file>",
20+
"args": ["tc", "test", "${file}"]
21+
},
22+
{
23+
"type": "shell",
24+
"options": {
25+
"shell": {
26+
"executable": "bash",
27+
"args": ["-c", "-l"]
28+
}
29+
},
30+
"command": "pnpm",
31+
"isBackground": false,
32+
"group": "test",
33+
"presentation": {
34+
"panel": "dedicated",
35+
"clear": true
36+
},
37+
"label": "test:watch <file>",
38+
"args": ["tc", "test", "--watch", "${file}"]
39+
},
40+
{
41+
"type": "shell",
42+
"options": {
43+
"shell": {
44+
"executable": "bash",
45+
"args": ["-c", "-l"]
46+
}
47+
},
48+
"command": "pnpm",
49+
"isBackground": false,
50+
"group": "test",
51+
"presentation": {
52+
"panel": "dedicated",
53+
"clear": true
54+
},
55+
"label": "test:debug <file>",
56+
"args": ["tc", "test", "-n", "inspect-brk", "${file}"]
57+
}
58+
]
59+
}

package.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,34 @@
3131
"devDependencies": {
3232
"@babel/plugin-syntax-flow": "^7.14.5",
3333
"@babel/plugin-transform-react-jsx": "^7.14.9",
34-
"@jcoreio/toolchain": "^3.2.0",
35-
"@jcoreio/toolchain-circle": "^3.2.0",
36-
"@jcoreio/toolchain-esnext": "^3.2.0",
37-
"@jcoreio/toolchain-flow": "^3.2.0",
38-
"@jcoreio/toolchain-mocha": "^3.2.0",
39-
"@jcoreio/toolchain-react": "^3.2.0",
40-
"@jcoreio/toolchain-semantic-release": "^3.2.0",
41-
"@jcoreio/toolchain-typescript": "^3.2.0",
34+
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
35+
"@jcoreio/toolchain": "^3.10.3",
36+
"@jcoreio/toolchain-circle": "^3.10.3",
37+
"@jcoreio/toolchain-esnext": "^3.10.3",
38+
"@jcoreio/toolchain-flow": "^3.10.3",
39+
"@jcoreio/toolchain-mocha": "^3.10.3",
40+
"@jcoreio/toolchain-react": "^3.10.3",
41+
"@jcoreio/toolchain-semantic-release": "^3.10.3",
42+
"@jcoreio/toolchain-typescript": "^3.10.3",
4243
"@material-ui/core": "^3.9.3",
4344
"@material-ui/icons": "^3.0.2",
4445
"@storybook/storybook-deployer": "^2.2.0",
4546
"@testing-library/react": "^14.1.0",
4647
"@types/inline-style-prefixer": "^5.0.3",
4748
"@types/react": "^18.2.37",
4849
"@types/react-dom": "^18.2.15",
49-
"@typescript-eslint/eslint-plugin": "^5.60.0",
50-
"@typescript-eslint/parser": "^5.60.0",
50+
"@typescript-eslint/eslint-plugin": "^7.6.0",
51+
"@typescript-eslint/parser": "^7.6.0",
5152
"babel-loader": "^8.0.5",
5253
"babel-plugin-lodash": "^3.3.4",
5354
"chai": "^4.3.7",
5455
"copy": "^0.3.2",
5556
"cross-env": "^5.2.0",
5657
"delay": "^2.0.0",
57-
"eslint": "^8.43.0",
58+
"eslint": "^8.56.0",
5859
"eslint-config-prettier": "^3.3.0",
5960
"eslint-plugin-flowtype": "^8.0.3",
61+
"eslint-plugin-no-only-tests": "^3.1.0",
6062
"eslint-plugin-react": "^7.32.2",
6163
"flow-bin": "^0.113.0",
6264
"get-node-dimensions": "^1.2.0",
@@ -102,5 +104,5 @@
102104
"engines": {
103105
"node": ">=16"
104106
},
105-
"packageManager": "pnpm@8.3.1"
107+
"packageManager": "pnpm@8.11.0"
106108
}

0 commit comments

Comments
 (0)