Skip to content

Commit ecc4f82

Browse files
committed
Merge remote-tracking branch 'origin/vite'
2 parents 27330b2 + d9d9791 commit ecc4f82

51 files changed

Lines changed: 8921 additions & 144 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
echo "${{ secrets.ALIYUN_PRIVATE_KEY }}" | tr -d '\r' > private_key.pem
3939
chmod 600 private_key.pem
4040
# 清空目标目录
41-
ssh -i private_key.pem $USERNAME@$HOST "rm -rf /work/nexus/*"
42-
scp -i private_key.pem -r dist/* $USERNAME@$HOST:/work/nexus
41+
# ssh -i private_key.pem $USERNAME@$HOST "rm -rf /work/nexus/*"
42+
# scp -i private_key.pem -C -r dist/* $USERNAME@$HOST:/work/nexus
43+
rsync -avz --delete dist/ $USERNAME@$HOST:/work/nexus
4344
ssh -i private_key.pem $USERNAME@$HOST "sudo systemctl reload nginx"
4445
rm private_key.pem

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
},
1313
"dependencies": {
1414
"@ant-design/v5-patch-for-react-19": "^1.0.3",
15-
"@flowgram.ai/free-container-plugin": "^0.4.10",
16-
"@flowgram.ai/free-group-plugin": "^0.4.10",
17-
"@flowgram.ai/free-layout-editor": "^0.4.10",
18-
"@flowgram.ai/free-lines-plugin": "^0.4.10",
19-
"@flowgram.ai/free-node-panel-plugin": "^0.4.10",
20-
"@flowgram.ai/free-snap-plugin": "^0.4.10",
21-
"@flowgram.ai/minimap-plugin": "^0.4.10",
15+
"@flowgram.ai/free-container-plugin": "^0.4.11",
16+
"@flowgram.ai/free-group-plugin": "^0.4.11",
17+
"@flowgram.ai/free-layout-editor": "^0.4.11",
18+
"@flowgram.ai/free-lines-plugin": "^0.4.11",
19+
"@flowgram.ai/free-node-panel-plugin": "^0.4.11",
20+
"@flowgram.ai/free-snap-plugin": "^0.4.11",
21+
"@flowgram.ai/minimap-plugin": "^0.4.11",
2222
"@monaco-editor/react": "^4.7.0",
23-
"@tanstack/react-query": "^5.86.0",
23+
"@tanstack/react-query": "^5.87.1",
2424
"@zxcvbn-ts/core": "^3.0.4",
2525
"ahooks": "^3.9.5",
26-
"antd": "^5.27.2",
26+
"antd": "^5.27.3",
2727
"axios": "^1.11.0",
2828
"clsx": "^2.1.1",
2929
"crypto-js": "^4.2.0",
3030
"dayjs": "^1.11.18",
3131
"echarts": "^6.0.0",
32-
"i18next": "^25.5.1",
32+
"i18next": "^25.5.2",
3333
"jsencrypt": "^3.5.4",
3434
"lodash-es": "^4.17.21",
3535
"react": "^19.1.1",
@@ -57,8 +57,8 @@
5757
"@types/react-resizable": "^3.0.8",
5858
"@vitejs/plugin-react": "^5.0.2",
5959
"babel-plugin-react-compiler": "^19.1.0-rc.3",
60-
"globals": "^16.3.0",
61-
"sass-embedded": "^1.92.0",
60+
"globals": "^16.4.0",
61+
"sass-embedded": "^1.92.1",
6262
"tailwindcss": "^4.1.13",
6363
"terser": "^5.44.0",
6464
"typescript": "~5.9.2",

public/font/iconfont.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GlobalConfigProvider.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ const GlobalConfigProvider: React.FC = () => {
2727
cssVar: true,
2828
token: {
2929
colorPrimary: colorPrimary,
30+
controlHeight: 36,
31+
borderRadius: 8
3032
},
3133
components: {
3234
Layout: {

0 commit comments

Comments
 (0)