From 21c67e5fe2db7d532527f57c5f39b9a911405f62 Mon Sep 17 00:00:00 2001 From: Uyarn Date: Wed, 6 Apr 2022 17:27:30 +0800 Subject: [PATCH] chore: upgrade dependencies map --- package.json | 17 +++++++---------- src/main.ts | 2 -- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 84a1db6..80ee223 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "test": "echo \"no test specified,work in process\"" }, "dependencies": { - "cz-conventional-changelog": "^3.3.0", + "axios": "^0.26.0", "dayjs": "^1.10.6", "echarts": "~5.1.2", "hex-to-hsl": "^1.0.2", @@ -25,33 +25,31 @@ "pinia": "^2.0.11", "qrcode.vue": "^3.2.2", "tdesign-icons-vue-next": "^0.0.6", - "tdesign-vue-next": "0.11.0", + "tdesign-vue-next": "~0.11.2", "tvision-color": "^1.3.1", "vue": "^3.2.31", "vue-color-kit": "^1.0.5", "vue-router": "^4.0.11", - "vue3-clipboard": "^1.0.0" + "vue-clipboard3": "^1.0.0" }, "devDependencies": { - "@commitlint/cli": "^15.0.0", - "@commitlint/config-conventional": "^15.0.0", + "@commitlint/cli": "^16.2.1", + "@commitlint/config-conventional": "^16.2.1", "@types/echarts": "^4.9.10", "@types/ws": "^8.2.2", "@typescript-eslint/eslint-plugin": "^4.29.3", "@typescript-eslint/parser": "^4.29.3", - "@vitejs/plugin-vue": "^1.3.0", + "@vitejs/plugin-vue": "^2.3.1", "@vitejs/plugin-vue-jsx": "^1.1.7", "@vue/compiler-sfc": "^3.0.5", - "axios": "^0.26.0", "commitizen": "^4.2.4", - "compressorjs": "^1.0.7", + "cz-conventional-changelog": "^3.3.0", "eslint": "^7.32.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.24.2", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-vue": "^7.16.0", - "http-proxy-agent": "^5.0.0", "husky": "^7.0.4", "less": "^4.1.1", "lint-staged": "^12.1.2", @@ -65,7 +63,6 @@ "vite": "^2.7.1", "vite-plugin-mock": "^2.9.6", "vite-svg-loader": "^3.1.0", - "vue-clipboard3": "^1.0.1", "vue-tsc": "^0.29.8" }, "config": { diff --git a/src/main.ts b/src/main.ts index 31ac264..5110058 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,6 @@ import { createApp } from 'vue'; import TDesign from 'tdesign-vue-next'; import 'tdesign-vue-next/es/style/index.css'; -import VueClipboard from 'vue3-clipboard'; import { store } from './store'; import router from './router'; @@ -15,6 +14,5 @@ const app = createApp(App); app.use(TDesign); app.use(store); app.use(router); -app.use(VueClipboard); app.mount('#app');