Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a539ca2

Browse files
committedJan 8, 2025·
chore: fix package.json error
1 parent 100a451 commit a539ca2

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: npm install
1919

2020
- name: Type Check
21-
run: tsc type-check
21+
run: npm run type-check
2222

2323
- name: Build
2424
run: npm run build

‎package.json

+7-11
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@
1818
"url": "https://github.com/antvis/antvis.github.io/issues"
1919
},
2020
"dependencies": {
21-
"@ant-design/icons": "^4.7.0",
21+
"@ant-design/icons": "^4.8.3",
2222
"@antv/dumi-theme-antv": "^0.5.2",
2323
"@antv/g2plot": "^2.3.1",
2424
"@antv/g6": "3.3.7",
25-
"@antv/knowledge": "^0.1.3-alpha.17",
26-
"@antv/matrix-util": "2.0.7",
2725
"@antv/util": "^3.3.1",
2826
"antd": "5.10.2",
2927
"chroma-js": "^2.1.0",
@@ -36,21 +34,18 @@
3634
"new-github-issue-url": "^1.0.0",
3735
"prettier": "^2.0.0",
3836
"pretty-quick": "^3.1.3",
39-
"react": "^18.2.0",
40-
"react-github-btn": "^1.4.0",
41-
"react-use": "^17.4.0"
37+
"react": "^18.3.1",
38+
"react-dom": "^18.3.1",
39+
"react-github-btn": "^1.4.0"
4240
},
4341
"devDependencies": {
4442
"@types/classnames": "^2.2.9",
4543
"@types/d3": "^7.4.2",
4644
"@types/lodash": "^4.14.189",
4745
"@types/parse-github-url": "^1.0.0",
4846
"@types/react": "^16.9.5",
49-
"@types/react-dom": "^16.9.1",
5047
"@types/react-github-button": "^0.1.0",
51-
"@types/react-helmet": "^6.0.0",
52-
"i": "^0.3.7",
53-
"npm": "^9.1.2"
48+
"@types/react-helmet": "^6.0.0"
5449
},
5550
"license": "MIT",
5651
"scripts": {
@@ -63,7 +58,8 @@
6358
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,less}\"",
6459
"pretty-quick": "pretty-quick",
6560
"tsc": "tsc",
66-
"serve": "dumi preview"
61+
"serve": "dumi preview",
62+
"type-check": "tsc --noEmit"
6763
},
6864
"husky": {
6965
"hooks": {

0 commit comments

Comments
 (0)
Please sign in to comment.