Skip to content

Commit 0a1ac06

Browse files
committed
chore: update dependencies
1 parent f2f2ee1 commit 0a1ac06

File tree

5 files changed

+12
-32
lines changed

5 files changed

+12
-32
lines changed

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@vue/reactivity": "^3.3.10",
1717
"@vue/shared": "^3.3.10",
1818
"@vueuse/core": "^10.6.1",
19-
"ant-design-vue": "4.0.7",
19+
"ant-design-vue": "4.0.8",
2020
"apexcharts": "^3.36.3",
2121
"axios": "^1.6.2",
2222
"dayjs": "^1.11.10",
@@ -62,7 +62,7 @@
6262
"eslint-plugin-vue": "^9.18.1",
6363
"less": "^4.2.0",
6464
"postcss": "^8.4.31",
65-
"tailwindcss": "^3.3.6",
65+
"tailwindcss": "^3.3.7",
6666
"typescript": "^5.3.2",
6767
"unplugin-auto-import": "^0.17.1",
6868
"unplugin-vue-components": "^0.25.2",

app/pnpm-lock.yaml

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"2.0.0-beta.8","build_id":100,"total_build":304}
1+
{"version":"2.0.0-beta.8","build_id":101,"total_build":305}

app/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"2.0.0-beta.8","build_id":100,"total_build":304}
1+
{"version":"2.0.0-beta.8","build_id":101,"total_build":305}

app/vite.config.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,6 @@ import svgLoader from 'vite-svg-loader'
1010
import AutoImport from 'unplugin-auto-import/vite'
1111
import DefineOptions from 'unplugin-vue-define-options/vite'
1212

13-
function fixAntdvWarningPlugin() {
14-
return {
15-
name: 'fix-antd-vue-warning', //
16-
transform(code: string, id: string) {
17-
// replace antdv js only
18-
if (id.includes('ant-design-vue/es/_util/hooks/_vueuse')) {
19-
// replace /* #__PURE__ */ with empty string
20-
const newCode = code.replace(/\/\* #__PURE__ \*\//g, '')
21-
22-
return {
23-
code: newCode,
24-
map: null,
25-
}
26-
}
27-
},
28-
}
29-
}
30-
3113
// https://vitejs.dev/config/
3214
export default defineConfig(({ mode }) => {
3315
// eslint-disable-next-line n/prefer-global/process
@@ -51,8 +33,6 @@ export default defineConfig(({ mode }) => {
5133
],
5234
},
5335
plugins: [
54-
fixAntdvWarningPlugin(),
55-
5636
vue({
5737
script: {
5838
defineModel: true,

0 commit comments

Comments
 (0)