From baac7c73b7caa077269b1c985a2986f3cb549092 Mon Sep 17 00:00:00 2001 From: Sepush Date: Thu, 1 Sep 2022 15:55:15 +0800 Subject: [PATCH 1/2] chore: bump ts to 4.7 Signed-off-by: Sepush --- package.json | 6 +++--- src/ellipsis/src/Ellipsis.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 5d010f7faba..59c595b5aa0 100644 --- a/package.json +++ b/package.json @@ -137,12 +137,12 @@ "rollup-plugin-terser": "^7.0.2", "superagent": "^8.0.0", "ts-jest": "^28.0.1", - "typescript": "~4.6.3", + "typescript": "~4.7.4", "vfonts": "^0.1.0", "vite": "3.0.9", - "vue": "^3.2.36", + "vue": "^3.2.38", "vue-router": "^4.0.14", - "vue-tsc": "^0.40.1" + "vue-tsc": "^0.40.5" }, "peerDependencies": { "vue": "^3.0.0" diff --git a/src/ellipsis/src/Ellipsis.tsx b/src/ellipsis/src/Ellipsis.tsx index e9c1ef70d4f..16dd51607f5 100644 --- a/src/ellipsis/src/Ellipsis.tsx +++ b/src/ellipsis/src/Ellipsis.tsx @@ -181,7 +181,7 @@ export default defineComponent({ Date: Fri, 9 Sep 2022 18:56:21 +0800 Subject: [PATCH 2/2] ts4.8 Signed-off-by: Sepush --- package.json | 16 ++++++++-------- src/_utils/vue/keysOf.ts | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 59c595b5aa0..853c36ea82a 100644 --- a/package.json +++ b/package.json @@ -91,16 +91,16 @@ "@rollup/plugin-replace": "^4.0.0", "@types/estree": "^1.0.0", "@types/jest": "^28.1.3", - "@typescript-eslint/eslint-plugin": "^5.18.0", - "@typescript-eslint/parser": "^5.18.0", + "@typescript-eslint/eslint-plugin": "^5.36.2", + "@typescript-eslint/parser": "^5.36.2", "@vicons/fluent": "^0.12.0", "@vicons/ionicons4": "^0.12.0", "@vicons/ionicons5": "^0.12.0", "@vitejs/plugin-vue": "^3.0.0", - "@vue/compiler-sfc": "^3.2.36", + "@vue/compiler-sfc": "^3.2.39", "@vue/eslint-config-standard": "^8.0.1", - "@vue/eslint-config-typescript": "^11.0.0", - "@vue/server-renderer": "^3.2.36", + "@vue/eslint-config-typescript": "^11.0.1", + "@vue/server-renderer": "^3.2.39", "@vue/test-utils": "^2.0.2", "autoprefixer": "^10.4.4", "babel-jest": "^28.1.3", @@ -118,7 +118,7 @@ "eslint-plugin-n": "^15.2.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.0.0", - "eslint-plugin-vue": "^9.3.0", + "eslint-plugin-vue": "^9.4.0", "express": "^4.17.3", "fast-glob": "^3.2.11", "fs-extra": "^10.0.1", @@ -137,10 +137,10 @@ "rollup-plugin-terser": "^7.0.2", "superagent": "^8.0.0", "ts-jest": "^28.0.1", - "typescript": "~4.7.4", + "typescript": "~4.8.3", "vfonts": "^0.1.0", "vite": "3.0.9", - "vue": "^3.2.38", + "vue": "^3.2.39", "vue-router": "^4.0.14", "vue-tsc": "^0.40.5" }, diff --git a/src/_utils/vue/keysOf.ts b/src/_utils/vue/keysOf.ts index 1ef260f1d86..14b36daa3bb 100644 --- a/src/_utils/vue/keysOf.ts +++ b/src/_utils/vue/keysOf.ts @@ -1,3 +1,3 @@ -export function keysOf (obj: T): Array { +export function keysOf (obj: T): Array { return Object.keys(obj) as any }