From a0ec84588a319b566aec377f6ec4ad8d0520ba30 Mon Sep 17 00:00:00 2001 From: Soybean <2570172956@qq.com> Date: Fri, 13 Aug 2021 14:22:35 +0800 Subject: [PATCH] =?UTF-8?q?build(projects):=20=E4=BE=9D=E8=B5=96=E5=8D=87?= =?UTF-8?q?=E7=BA=A7=EF=BC=8C=E8=A7=84=E8=8C=83=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 3 +- build/plugins/style-import.ts | 4 +- package.json | 49 +- src/{store/helpers => components}/index.ts | 0 src/enum/business.ts | 0 src/enum/common.ts | 6 + src/enum/index.ts | 1 + src/hooks/index.ts | 0 src/interface/business.ts | 9 + src/interface/index.ts | 1 + src/layouts/index.ts | 0 src/main.ts | 4 +- src/router/index.ts | 0 src/service/request/errorHandler.ts | 7 +- src/service/request/index.ts | 6 +- src/service/request/instance.ts | 17 +- src/service/request/request.ts | 15 - src/service/utils/index.ts | 45 + src/store/index.ts | 12 +- src/store/modules/app/index.ts | 26 + src/store/modules/aside/index.ts | 33 - src/store/modules/auth/index.ts | 66 +- src/store/modules/index.ts | 4 + src/utils/common/index.ts | 13 + src/utils/common/typeof.ts | 47 + src/utils/index.ts | 13 + src/utils/storage/local.ts | 0 src/utils/storage/session.ts | 0 yarn.lock | 1037 ++++++++++++-------- 29 files changed, 857 insertions(+), 561 deletions(-) rename src/{store/helpers => components}/index.ts (100%) create mode 100644 src/enum/business.ts create mode 100644 src/enum/common.ts create mode 100644 src/enum/index.ts create mode 100644 src/hooks/index.ts create mode 100644 src/interface/business.ts create mode 100644 src/interface/index.ts create mode 100644 src/layouts/index.ts create mode 100644 src/router/index.ts create mode 100644 src/service/utils/index.ts create mode 100644 src/store/modules/app/index.ts delete mode 100644 src/store/modules/aside/index.ts create mode 100644 src/store/modules/index.ts create mode 100644 src/utils/common/index.ts create mode 100644 src/utils/common/typeof.ts create mode 100644 src/utils/storage/local.ts create mode 100644 src/utils/storage/session.ts diff --git a/.eslintrc.js b/.eslintrc.js index b526f918..14703401 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -18,13 +18,12 @@ module.exports = { '@vue/prettier/@typescript-eslint' ], rules: { - 'no-unused-vars': 1, + 'no-unused-vars': 'off', 'import/extensions': ['error', 'never'], 'import/no-extraneous-dependencies': [2, { devDependencies: true }], 'import/no-unresolved': 0, 'no-shadow': 0, 'import/prefer-default-export': 0, - 'vue/no-deprecated-slot-attribute': 1, '@typescript-eslint/no-explicit-any': 0, '@typescript-eslint/no-inferrable-types': 0, '@typescript-eslint/ban-ts-ignore': 'off', diff --git a/build/plugins/style-import.ts b/build/plugins/style-import.ts index a039e482..35f42f1b 100644 --- a/build/plugins/style-import.ts +++ b/build/plugins/style-import.ts @@ -8,8 +8,8 @@ export default [ esModule: true, ensureStyleFile: true, resolveStyle: name => { - name = name.slice(3); - return `element-plus/packages/theme-chalk/src/${name}.scss`; + const formatName = name.slice(3); + return `element-plus/packages/theme-chalk/src/${formatName}.scss`; }, resolveComponent: name => { return `element-plus/lib/${name}`; diff --git a/package.json b/package.json index de22f302..1fcea68a 100644 --- a/package.json +++ b/package.json @@ -7,56 +7,63 @@ "serve": "vite preview", "lint": "eslint ./src --ext .vue,.js,jsx,.ts,tsx", "lint:fix": "eslint --fix ./src --ext .vue,.js,jsx,.ts,tsx", - "prepare": "husky install" + "prepare": "husky install", + "postinstall": "patch-package" }, "lint-staged": { "*.{vue,js,jsx,ts,tsx}": "eslint --fix" }, "dependencies": { + "@vueuse/core": "^5.3.0", "axios": "^0.21.1", "dayjs": "^1.10.6", - "element-plus": "^1.0.2-beta.55", + "element-plus": "^1.0.2-beta.70", + "form-data": "^4.0.0", "nprogress": "^0.2.0", + "pinia": "^2.0.0-rc.4", "qs": "^6.10.1", "smoothscroll-polyfill": "^0.4.4", - "vue": "^3.0.5" + "vue": "^3.2.2", + "vue-router": "^4.0.11" }, "devDependencies": { - "@commitlint/cli": "^12.1.4", - "@commitlint/config-conventional": "^12.1.4", - "@iconify/json": "^1.1.378", + "@commitlint/cli": "^13.1.0", + "@commitlint/config-conventional": "^13.1.0", + "@iconify/json": "^1.1.386", "@types/nprogress": "^0.2.0", "@types/qs": "^6.9.7", "@types/smoothscroll-polyfill": "^0.3.1", - "@typescript-eslint/eslint-plugin": "^4.28.4", - "@typescript-eslint/parser": "^4.28.4", - "@vitejs/plugin-vue": "^1.2.5", - "@vue/compiler-sfc": "^3.1.5", + "@typescript-eslint/eslint-plugin": "^4.29.1", + "@typescript-eslint/parser": "^4.29.1", + "@vitejs/plugin-vue": "^1.4.0", + "@vue/compiler-sfc": "^3.2.2", "@vue/eslint-config-prettier": "^6.0.0", "@vue/eslint-config-typescript": "^7.0.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "cz-customizable": "^6.3.0", "dotenv": "^10.0.0", - "eslint": "^7.31.0", + "eslint": "^7.32.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "^2.23.4", + "eslint-plugin-import": "^2.24.0", "eslint-plugin-prettier": "^3.4.0", - "eslint-plugin-vue": "^7.14.0", + "eslint-plugin-vue": "^7.16.0", "husky": "^7.0.1", - "lint-staged": "^11.0.1", + "lint-staged": "^11.1.2", + "patch-package": "^6.4.7", + "postinstall-postinstall": "^2.1.0", "prettier": "^2.3.2", - "sass": "^1.35.2", + "sass": "^1.37.5", "typescript": "^4.3.5", - "vite": "^2.4.2", - "vite-plugin-components": "^0.13.0", + "vite": "^2.4.4", + "vite-plugin-components": "^0.13.2", "vite-plugin-html": "^2.0.7", "vite-plugin-icons": "^0.6.5", - "vite-plugin-style-import": "^1.0.1", - "vite-plugin-windicss": "^1.2.4", - "vue-tsc": "^0.2.1", - "windicss": "^3.1.5" + "vite-plugin-style-import": "^1.1.1", + "vite-plugin-windicss": "^1.2.7", + "vue-tsc": "^0.2.2", + "windicss": "^3.1.7" }, "config": { "commitizen": { diff --git a/src/store/helpers/index.ts b/src/components/index.ts similarity index 100% rename from src/store/helpers/index.ts rename to src/components/index.ts diff --git a/src/enum/business.ts b/src/enum/business.ts new file mode 100644 index 00000000..e69de29b diff --git a/src/enum/common.ts b/src/enum/common.ts new file mode 100644 index 00000000..0eaaff0b --- /dev/null +++ b/src/enum/common.ts @@ -0,0 +1,6 @@ +/** 请求头的content-type类型 */ +export enum ContentType { + json = 'application/json', + formUrlencoded = 'application/x-www-form-urlencoded', + formData = 'multipart/form-data' +} diff --git a/src/enum/index.ts b/src/enum/index.ts new file mode 100644 index 00000000..6e4371f6 --- /dev/null +++ b/src/enum/index.ts @@ -0,0 +1 @@ +export { ContentType } from './common'; diff --git a/src/hooks/index.ts b/src/hooks/index.ts new file mode 100644 index 00000000..e69de29b diff --git a/src/interface/business.ts b/src/interface/business.ts new file mode 100644 index 00000000..7f1a8719 --- /dev/null +++ b/src/interface/business.ts @@ -0,0 +1,9 @@ +/** 用户信息 */ +export interface UserInfo { + /** 用户id */ + userId: string; + /** 用户名 */ + userName: string; + /** 用户手机号 */ + userPhone: string; +} diff --git a/src/interface/index.ts b/src/interface/index.ts new file mode 100644 index 00000000..0d115449 --- /dev/null +++ b/src/interface/index.ts @@ -0,0 +1 @@ +export { UserInfo } from './business'; diff --git a/src/layouts/index.ts b/src/layouts/index.ts new file mode 100644 index 00000000..e69de29b diff --git a/src/main.ts b/src/main.ts index 08545c1d..c17d1323 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,8 +4,8 @@ import { setupSmoothScroll, setupElementPlus } from './plugins'; import 'virtual:windi.css'; import './styles/css/global.css'; -setupSmoothScroll(); - const app = createApp(App); +setupSmoothScroll(); setupElementPlus(app); + app.mount('#app'); diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 00000000..e69de29b diff --git a/src/service/request/errorHandler.ts b/src/service/request/errorHandler.ts index 5dc6e629..62c39a9d 100644 --- a/src/service/request/errorHandler.ts +++ b/src/service/request/errorHandler.ts @@ -14,10 +14,7 @@ const ERROR_STATUS = { 504: '504: 网关超时~', 505: '505: http版本不支持该请求~' }; -type ErrorStatus = 400 | 401 | 403 | 404 | 405 | 408 | 500 | 501 | 502 | 503 | 504 | 505; - -/** 错误信息显示时间 */ -export const errorDuration = 3000 / 1000; +type ErrorStatus = keyof typeof ERROR_STATUS; /** * 网络请求错误状态处理 @@ -37,7 +34,7 @@ export function errorHandler(error: any): void { ElMessage.error('网络不可用~'); return; } - ElMessage.error('未知错误~'); + ElMessage.error('请求错误~'); } /** diff --git a/src/service/request/index.ts b/src/service/request/index.ts index b39782e0..c6f268c9 100644 --- a/src/service/request/index.ts +++ b/src/service/request/index.ts @@ -1,10 +1,6 @@ import { createRequest } from './request'; -import { REQUEST_TIMEOUT, ContentType } from './config'; +import { REQUEST_TIMEOUT } from './config'; -export { handleResponse } from './request'; -export { ContentType }; - -// emoss-admin export const adminRequest = createRequest({ baseURL: import.meta.env.VITE_HTTP_URL_EMOSS_ADMIN as string, timeout: REQUEST_TIMEOUT diff --git a/src/service/request/instance.ts b/src/service/request/instance.ts index bef64d94..abed28b7 100644 --- a/src/service/request/instance.ts +++ b/src/service/request/instance.ts @@ -1,9 +1,11 @@ import axios from 'axios'; import qs from 'qs'; -import { getStorageToken } from '@/utils'; import { ElMessage } from 'element-plus'; import type { AxiosRequestConfig, AxiosInstance } from 'axios'; +import { ContentType } from '@/enum'; +import { getStorageToken } from '@/utils'; import { errorHandler } from './errorHandler'; +import { transformFile } from '../utils'; export interface StatusConfig { /** 表明请求状态的属性key */ @@ -37,15 +39,20 @@ export default class CustomAxiosInstance { /** 设置请求拦截器 */ setInterceptor(statusConfig: StatusConfig): void { this.instance.interceptors.request.use( - config => { + async config => { const handleConfig = { ...config }; - // content-type为application/x-www-form-urlencoded类型的data参数需要序列化 - if (handleConfig.headers['Content-Type'] === 'application/x-www-form-urlencoded') { + // form类型转换 + if (handleConfig.headers['Content-Type'] === ContentType.formUrlencoded) { handleConfig.data = qs.stringify(handleConfig.data); } + // 文件类型转换 + if (handleConfig.headers['Content-Type'] === ContentType.formData) { + const key = Object.keys(handleConfig.data)[0]; + const file = handleConfig.data[key]; + handleConfig.data = await transformFile(file, key); + } // 设置token handleConfig.headers.Authorization = getStorageToken(); - return handleConfig; }, error => { diff --git a/src/service/request/request.ts b/src/service/request/request.ts index 6adc8044..ebebbcc8 100644 --- a/src/service/request/request.ts +++ b/src/service/request/request.ts @@ -49,18 +49,3 @@ export function createRequest(axiosConfig: AxiosRequestConfig, statusConfig?: St const request = new Request(customInstance.instance); return request; } - -/** - * 对请求的结果数据进行格式化的处理 - * @param handleFunc - 处理函数 - * @param errors - 接收多个请求的错误 - * @param datas - 接收多个请求的数据 - */ -export function handleResponse(handleFunc: Function, errors: any[], datas: any[]) { - let handleData = null; - if (errors.every(error => !error)) { - handleData = handleFunc(...datas); - } - const resError = errors.find(error => Boolean(error)); - return [resError, handleData] as [any, T]; -} diff --git a/src/service/utils/index.ts b/src/service/utils/index.ts new file mode 100644 index 00000000..1dbefe72 --- /dev/null +++ b/src/service/utils/index.ts @@ -0,0 +1,45 @@ +import FormData from 'form-data'; +import { isArray } from '@/utils'; + +type HandleFunc = (...arg: any) => T; +type RequestError = any; +type RequestData = any; +type RequestResult = [RequestError, RequestData]; +/** + * 对请求的结果数据进行格式化的处理 + * @param handleFunc - 处理函数 + * @param requests - 请求结果 + */ +export function handleResponse(handleFunc: HandleFunc, ...requests: RequestResult[]) { + let handleData: any = null; + let error: any = null; + const hasError = requests.some(item => { + const isError = Boolean(item[0]); + if (isError) { + [error] = item; + } + return isError; + }); + if (!hasError) { + handleData = handleFunc(...requests.map(item => item[1])); + } + return [error, handleData] as [any, T]; +} + +/** + * 接口为上传文件的类型时数据转换 + */ +export async function transformFile(file: File[] | File, key: string) { + const formData = new FormData(); + if (isArray(file)) { + await Promise.all( + (file as File[]).map(item => { + formData.append(key, item); + return true; + }) + ); + } else { + await formData.append(key, file); + } + return formData; +} diff --git a/src/store/index.ts b/src/store/index.ts index a9493436..24c9e289 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -1,10 +1,10 @@ import type { App } from 'vue'; -import { createAuthStore, useAuthStore } from './modules/auth'; -import { createAsideStore, useAsideStore } from './modules/aside'; +import { createPinia } from 'pinia'; -export function createStore(app: App) { - createAuthStore(app); - createAsideStore(app); +export const store = createPinia(); + +export function setupStore(app: App) { + app.use(store); } -export { useAuthStore, useAsideStore }; +export { useAppStore, useAuthStore } from './modules'; diff --git a/src/store/modules/app/index.ts b/src/store/modules/app/index.ts new file mode 100644 index 00000000..1d5aa409 --- /dev/null +++ b/src/store/modules/app/index.ts @@ -0,0 +1,26 @@ +import { defineStore } from 'pinia'; +import { store } from '../../index'; + +interface AppState { + /** 侧边栏折叠 */ + asideCollapse: boolean; +} + +const appStore = defineStore({ + id: 'app-store', + state: (): AppState => ({ + asideCollapse: false + }), + actions: { + handleAsideCollapse(collapse: boolean) { + this.asideCollapse = collapse; + }, + toggleAside() { + this.asideCollapse = !this.asideCollapse; + } + } +}); + +export default function useAppStore() { + return appStore(store); +} diff --git a/src/store/modules/aside/index.ts b/src/store/modules/aside/index.ts deleted file mode 100644 index ca59e680..00000000 --- a/src/store/modules/aside/index.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { inject, reactive } from 'vue'; -import type { App, InjectionKey } from 'vue'; - -interface AsideState { - collapse: boolean; -} - -interface AsideStore { - /** aside状态 */ - asideState: AsideState; - /** 切换collapse */ - toggle: () => void; -} - -const injectKey: InjectionKey = Symbol('aside-store'); - -export function createAsideStore(app: App) { - const state = reactive({ - collapse: false - }); - function toggle() { - state.collapse = !state.collapse; - } - const provideData: AsideStore = { - asideState: state, - toggle - }; - app.provide(injectKey, provideData); -} - -export function useAsideStore() { - return inject(injectKey)!; -} diff --git a/src/store/modules/auth/index.ts b/src/store/modules/auth/index.ts index 96801eb9..1927e64e 100644 --- a/src/store/modules/auth/index.ts +++ b/src/store/modules/auth/index.ts @@ -1,44 +1,40 @@ -import { computed, inject, reactive } from 'vue'; -import type { ComputedRef, App, InjectionKey } from 'vue'; - -interface UserInfo { - userId: string; - userName: string; - userPhone: string; -} +import { defineStore } from 'pinia'; +import type { UserInfo } from '@/interface'; +import { store } from '../../index'; interface AuthState { + /** 用户token */ token: string; + /** 用户信息 */ userInfo: UserInfo; } -interface AuthStore { - /** auth状态 */ - authState: AuthState; - /** 是否登录 */ - isLogin: ComputedRef; -} - -const injectKey: InjectionKey = Symbol('auth-store'); - -export function createAuthStore(app: App) { - const state = reactive({ - token: '', - userInfo: { - userId: '', - userName: '', - userPhone: '' +const authStore = defineStore({ + /** 区分不通状态的唯一标识 */ + id: 'auth-store', + /** 状态 */ + state: (): AuthState => { + return { + token: '', + userInfo: { + userId: '', + userName: '', + userPhone: '' + } + }; + }, + getters: { + /** 是否登录 */ + isLogin: state => Boolean(state.token) + }, + actions: { + /** 重置auth状态 */ + resetAuthState() { + this.$reset(); } - }); - const isLogin = computed(() => Boolean(state.token)); + } +}); - const provideData: AuthStore = { - authState: state, - isLogin - }; - app.provide(injectKey, provideData); -} - -export function useAuthStore() { - return inject(injectKey)!; +export default function useAuthStore() { + return authStore(store); } diff --git a/src/store/modules/index.ts b/src/store/modules/index.ts new file mode 100644 index 00000000..26a34ef1 --- /dev/null +++ b/src/store/modules/index.ts @@ -0,0 +1,4 @@ +import useAppStore from './app'; +import useAuthStore from './auth'; + +export { useAppStore, useAuthStore }; diff --git a/src/utils/common/index.ts b/src/utils/common/index.ts new file mode 100644 index 00000000..b4c97c1a --- /dev/null +++ b/src/utils/common/index.ts @@ -0,0 +1,13 @@ +export { + isNumber, + isString, + isBoolean, + isNull, + isUndefined, + isObject, + isArray, + isDate, + isRegExp, + isSet, + isMap +} from './typeof'; diff --git a/src/utils/common/typeof.ts b/src/utils/common/typeof.ts new file mode 100644 index 00000000..0560792b --- /dev/null +++ b/src/utils/common/typeof.ts @@ -0,0 +1,47 @@ +enum DataType { + number = '[object Number]', + string = '[object String]', + boolean = '[object Object]', + null = '[object Null]', + undefined = '[object Undefined]', + object = '[object Object]', + array = '[object Array]', + date = '[object Date]', + regexp = '[object RegExp]', + set = '[object Set]', + map = '[object Map]' +} + +export function isNumber(data: any) { + return Object.prototype.toString.call(data) === DataType.number; +} +export function isString(data: any) { + return Object.prototype.toString.call(data) === DataType.string; +} +export function isBoolean(data: any) { + return Object.prototype.toString.call(data) === DataType.boolean; +} +export function isNull(data: any) { + return Object.prototype.toString.call(data) === DataType.null; +} +export function isUndefined(data: any) { + return Object.prototype.toString.call(data) === DataType.undefined; +} +export function isObject(data: any) { + return Object.prototype.toString.call(data) === DataType.object; +} +export function isArray(data: any) { + return Object.prototype.toString.call(data) === DataType.array; +} +export function isDate(data: any) { + return Object.prototype.toString.call(data) === DataType.date; +} +export function isRegExp(data: any) { + return Object.prototype.toString.call(data) === DataType.regexp; +} +export function isSet(data: any) { + return Object.prototype.toString.call(data) === DataType.set; +} +export function isMap(data: any) { + return Object.prototype.toString.call(data) === DataType.map; +} diff --git a/src/utils/index.ts b/src/utils/index.ts index e6661dbb..afada134 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1 +1,14 @@ export { getStorageToken, getStorageUserInfo } from './auth'; +export { + isNumber, + isString, + isBoolean, + isNull, + isUndefined, + isObject, + isArray, + isDate, + isRegExp, + isSet, + isMap +} from './common'; diff --git a/src/utils/storage/local.ts b/src/utils/storage/local.ts new file mode 100644 index 00000000..e69de29b diff --git a/src/utils/storage/session.ts b/src/utils/storage/session.ts new file mode 100644 index 00000000..e69de29b diff --git a/yarn.lock b/yarn.lock index c2a2dfc8..61a3cb09 100644 --- a/yarn.lock +++ b/yarn.lock @@ -50,34 +50,34 @@ "@babel/helper-validator-identifier" "^7.14.0" to-fast-properties "^2.0.0" -"@commitlint/cli@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/cli/download/@commitlint/cli-12.1.4.tgz?cache=0&sync_timestamp=1621842636693&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fcli%2Fdownload%2F%40commitlint%2Fcli-12.1.4.tgz#af4d9dd3c0122c7b39a61fa1cd2abbad0422dbe0" - integrity sha1-r02d08ASLHs5ph+hzSq7rQQi2+A= +"@commitlint/cli@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/cli/download/@commitlint/cli-13.1.0.tgz#3608bb24dbef41aaa0729ffe65c7f9b57409626a" + integrity sha1-Ngi7JNvvQaqgcp/+Zcf5tXQJYmo= dependencies: - "@commitlint/format" "^12.1.4" - "@commitlint/lint" "^12.1.4" - "@commitlint/load" "^12.1.4" - "@commitlint/read" "^12.1.4" - "@commitlint/types" "^12.1.4" + "@commitlint/format" "^13.1.0" + "@commitlint/lint" "^13.1.0" + "@commitlint/load" "^13.1.0" + "@commitlint/read" "^13.1.0" + "@commitlint/types" "^13.1.0" lodash "^4.17.19" resolve-from "5.0.0" resolve-global "1.0.0" - yargs "^16.2.0" + yargs "^17.0.0" -"@commitlint/config-conventional@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/config-conventional/download/@commitlint/config-conventional-12.1.4.tgz?cache=0&sync_timestamp=1621842270885&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fconfig-conventional%2Fdownload%2F%40commitlint%2Fconfig-conventional-12.1.4.tgz#95bbab622f117a8a3e49f95917b08655040c66a8" - integrity sha1-lburYi8Reoo+SflZF7CGVQQMZqg= +"@commitlint/config-conventional@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/config-conventional/download/@commitlint/config-conventional-13.1.0.tgz?cache=0&sync_timestamp=1627111036053&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fconfig-conventional%2Fdownload%2F%40commitlint%2Fconfig-conventional-13.1.0.tgz#f02871d50c73db0a31b777231f49203b964d9d59" + integrity sha1-8Chx1Qxz2woxt3cjH0kgO5ZNnVk= dependencies: conventional-changelog-conventionalcommits "^4.3.1" -"@commitlint/ensure@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/ensure/download/@commitlint/ensure-12.1.4.tgz?cache=0&sync_timestamp=1621842172335&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fensure%2Fdownload%2F%40commitlint%2Fensure-12.1.4.tgz#287ae2dcc5ccb086e749705b1bd9bdb99773056f" - integrity sha1-KHri3MXMsIbnSXBbG9m9uZdzBW8= +"@commitlint/ensure@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/ensure/download/@commitlint/ensure-13.1.0.tgz?cache=0&sync_timestamp=1627111573456&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fensure%2Fdownload%2F%40commitlint%2Fensure-13.1.0.tgz#057a325b54f104cbeed2a26bacb5eec29298e7d5" + integrity sha1-BXoyW1TxBMvu0qJrrLXuwpKY59U= dependencies: - "@commitlint/types" "^12.1.4" + "@commitlint/types" "^13.1.0" lodash "^4.17.19" "@commitlint/execute-rule@^12.1.4": @@ -85,33 +85,38 @@ resolved "https://registry.nlark.com/@commitlint/execute-rule/download/@commitlint/execute-rule-12.1.4.tgz?cache=0&sync_timestamp=1621842302709&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fexecute-rule%2Fdownload%2F%40commitlint%2Fexecute-rule-12.1.4.tgz#9973b02e9779adbf1522ae9ac207a4815ec73de1" integrity sha1-mXOwLpd5rb8VIq6awgekgV7HPeE= -"@commitlint/format@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/format/download/@commitlint/format-12.1.4.tgz?cache=0&sync_timestamp=1621842172303&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fformat%2Fdownload%2F%40commitlint%2Fformat-12.1.4.tgz#db2d46418a6ae57c90e5f7f65dff46f0265d9f24" - integrity sha1-2y1GQYpq5XyQ5ff2Xf9G8CZdnyQ= +"@commitlint/execute-rule@^13.0.0": + version "13.0.0" + resolved "https://registry.nlark.com/@commitlint/execute-rule/download/@commitlint/execute-rule-13.0.0.tgz?cache=0&sync_timestamp=1627109320915&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fexecute-rule%2Fdownload%2F%40commitlint%2Fexecute-rule-13.0.0.tgz#7823303b82b5d86dac46e67cfa005f4433476981" + integrity sha1-eCMwO4K12G2sRuZ8+gBfRDNHaYE= + +"@commitlint/format@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/format/download/@commitlint/format-13.1.0.tgz?cache=0&sync_timestamp=1627111572403&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fformat%2Fdownload%2F%40commitlint%2Fformat-13.1.0.tgz#915570d958d83bae5fa645de6b1e6c9dd1362ec0" + integrity sha1-kVVw2VjYO65fpkXeax5sndE2LsA= dependencies: - "@commitlint/types" "^12.1.4" + "@commitlint/types" "^13.1.0" chalk "^4.0.0" -"@commitlint/is-ignored@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/is-ignored/download/@commitlint/is-ignored-12.1.4.tgz?cache=0&sync_timestamp=1621842172997&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fis-ignored%2Fdownload%2F%40commitlint%2Fis-ignored-12.1.4.tgz#4c430bc3b361aa9be5cd4ddb252c1559870ea7bc" - integrity sha1-TEMLw7NhqpvlzU3bJSwVWYcOp7w= +"@commitlint/is-ignored@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/is-ignored/download/@commitlint/is-ignored-13.1.0.tgz#88a5dfbc8f9ea91e860323af6681aa131322b0c4" + integrity sha1-iKXfvI+eqR6GAyOvZoGqExMisMQ= dependencies: - "@commitlint/types" "^12.1.4" + "@commitlint/types" "^13.1.0" semver "7.3.5" -"@commitlint/lint@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/lint/download/@commitlint/lint-12.1.4.tgz?cache=0&sync_timestamp=1621842636368&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Flint%2Fdownload%2F%40commitlint%2Flint-12.1.4.tgz#856b7fd2b2e6367b836cb84a12f1c1b3c0e40d22" - integrity sha1-hWt/0rLmNnuDbLhKEvHBs8DkDSI= +"@commitlint/lint@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/lint/download/@commitlint/lint-13.1.0.tgz?cache=0&sync_timestamp=1627111044542&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Flint%2Fdownload%2F%40commitlint%2Flint-13.1.0.tgz#ea56ce0970f9b75ffe7bd2c9968f4f1d4461ba3a" + integrity sha1-6lbOCXD5t1/+e9LJlo9PHURhujo= dependencies: - "@commitlint/is-ignored" "^12.1.4" - "@commitlint/parse" "^12.1.4" - "@commitlint/rules" "^12.1.4" - "@commitlint/types" "^12.1.4" + "@commitlint/is-ignored" "^13.1.0" + "@commitlint/parse" "^13.1.0" + "@commitlint/rules" "^13.1.0" + "@commitlint/types" "^13.1.0" -"@commitlint/load@>6.1.1", "@commitlint/load@^12.1.4": +"@commitlint/load@>6.1.1": version "12.1.4" resolved "https://registry.nlark.com/@commitlint/load/download/@commitlint/load-12.1.4.tgz?cache=0&sync_timestamp=1621842272952&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fload%2Fdownload%2F%40commitlint%2Fload-12.1.4.tgz#e3c2dbc0e7d8d928f57a6878bd7219909fc0acab" integrity sha1-48LbwOfY2Sj1emh4vXIZkJ/ArKs= @@ -124,28 +129,41 @@ lodash "^4.17.19" resolve-from "^5.0.0" -"@commitlint/message@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/message/download/@commitlint/message-12.1.4.tgz?cache=0&sync_timestamp=1621842167304&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fmessage%2Fdownload%2F%40commitlint%2Fmessage-12.1.4.tgz#3895edcc0709deca5945f3d55f5ea95a9f1f446d" - integrity sha1-OJXtzAcJ3spZRfPVX16pWp8fRG0= - -"@commitlint/parse@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/parse/download/@commitlint/parse-12.1.4.tgz?cache=0&sync_timestamp=1621842634632&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fparse%2Fdownload%2F%40commitlint%2Fparse-12.1.4.tgz#ba03d54d24ef84f6fd2ff31c5e9998b22d7d0aa1" - integrity sha1-ugPVTSTvhPb9L/McXpmYsi19CqE= +"@commitlint/load@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/load/download/@commitlint/load-13.1.0.tgz?cache=0&sync_timestamp=1627109878360&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fload%2Fdownload%2F%40commitlint%2Fload-13.1.0.tgz#d6c9b547551f2216586d6c1964d93f92e7b04277" + integrity sha1-1sm1R1UfIhZYbWwZZNk/kuewQnc= dependencies: - "@commitlint/types" "^12.1.4" + "@commitlint/execute-rule" "^13.0.0" + "@commitlint/resolve-extends" "^13.0.0" + "@commitlint/types" "^13.1.0" + chalk "^4.0.0" + cosmiconfig "^7.0.0" + lodash "^4.17.19" + resolve-from "^5.0.0" + +"@commitlint/message@^13.0.0": + version "13.0.0" + resolved "https://registry.nlark.com/@commitlint/message/download/@commitlint/message-13.0.0.tgz?cache=0&sync_timestamp=1627109331390&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fmessage%2Fdownload%2F%40commitlint%2Fmessage-13.0.0.tgz#4f8d56b59e9cee8b37b8db6b48c26d7faf33762f" + integrity sha1-T41WtZ6c7os3uNtrSMJtf68zdi8= + +"@commitlint/parse@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/parse/download/@commitlint/parse-13.1.0.tgz?cache=0&sync_timestamp=1627111042805&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fparse%2Fdownload%2F%40commitlint%2Fparse-13.1.0.tgz#b88764be36527a468531e1b8dd2d95693ff9ba34" + integrity sha1-uIdkvjZSekaFMeG43S2VaT/5ujQ= + dependencies: + "@commitlint/types" "^13.1.0" conventional-changelog-angular "^5.0.11" conventional-commits-parser "^3.0.0" -"@commitlint/read@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/read/download/@commitlint/read-12.1.4.tgz?cache=0&sync_timestamp=1621842634884&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fread%2Fdownload%2F%40commitlint%2Fread-12.1.4.tgz#552fda42ef185d5b578beb6f626a5f8b282de3a6" - integrity sha1-VS/aQu8YXVtXi+tvYmpfiygt46Y= +"@commitlint/read@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/read/download/@commitlint/read-13.1.0.tgz?cache=0&sync_timestamp=1627111039603&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fread%2Fdownload%2F%40commitlint%2Fread-13.1.0.tgz#ccb65426b1228b8a598ed36966722d19756eea41" + integrity sha1-zLZUJrEii4pZjtNpZnItGXVu6kE= dependencies: - "@commitlint/top-level" "^12.1.4" - "@commitlint/types" "^12.1.4" - fs-extra "^9.0.0" + "@commitlint/top-level" "^13.0.0" + "@commitlint/types" "^13.1.0" + fs-extra "^10.0.0" git-raw-commits "^2.0.0" "@commitlint/resolve-extends@^12.1.4": @@ -158,25 +176,36 @@ resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/rules/download/@commitlint/rules-12.1.4.tgz?cache=0&sync_timestamp=1621842636115&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Frules%2Fdownload%2F%40commitlint%2Frules-12.1.4.tgz#0e141b08caa3d7bdc48aa784baa8baff3efd64db" - integrity sha1-DhQbCMqj173EiqeEuqi6/z79ZNs= +"@commitlint/resolve-extends@^13.0.0": + version "13.0.0" + resolved "https://registry.nlark.com/@commitlint/resolve-extends/download/@commitlint/resolve-extends-13.0.0.tgz#a38fcd2474483bf9ec6e1e901b27b8a23abe7d73" + integrity sha1-o4/NJHRIO/nsbh6QGye4ojq+fXM= dependencies: - "@commitlint/ensure" "^12.1.4" - "@commitlint/message" "^12.1.4" - "@commitlint/to-lines" "^12.1.4" - "@commitlint/types" "^12.1.4" + import-fresh "^3.0.0" + lodash "^4.17.19" + resolve-from "^5.0.0" + resolve-global "^1.0.0" -"@commitlint/to-lines@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/to-lines/download/@commitlint/to-lines-12.1.4.tgz?cache=0&sync_timestamp=1621842168815&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fto-lines%2Fdownload%2F%40commitlint%2Fto-lines-12.1.4.tgz#caa582dbf121f377a0588bb64e25c4854843cd25" - integrity sha1-yqWC2/Eh83egWIu2TiXEhUhDzSU= +"@commitlint/rules@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/rules/download/@commitlint/rules-13.1.0.tgz?cache=0&sync_timestamp=1627111047870&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Frules%2Fdownload%2F%40commitlint%2Frules-13.1.0.tgz#04f5aaf952884364ebf4e899ec440e3985f0e580" + integrity sha1-BPWq+VKIQ2Tr9OiZ7EQOOYXw5YA= + dependencies: + "@commitlint/ensure" "^13.1.0" + "@commitlint/message" "^13.0.0" + "@commitlint/to-lines" "^13.0.0" + "@commitlint/types" "^13.1.0" + execa "^5.0.0" -"@commitlint/top-level@^12.1.4": - version "12.1.4" - resolved "https://registry.nlark.com/@commitlint/top-level/download/@commitlint/top-level-12.1.4.tgz?cache=0&sync_timestamp=1621842167436&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Ftop-level%2Fdownload%2F%40commitlint%2Ftop-level-12.1.4.tgz#96d5c715bfc1bdf86dfcf11b67fc2cf7658c7a6e" - integrity sha1-ltXHFb/Bvfht/PEbZ/ws92WMem4= +"@commitlint/to-lines@^13.0.0": + version "13.0.0" + resolved "https://registry.nlark.com/@commitlint/to-lines/download/@commitlint/to-lines-13.0.0.tgz?cache=0&sync_timestamp=1627109336265&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Fto-lines%2Fdownload%2F%40commitlint%2Fto-lines-13.0.0.tgz#5937dd287e3a4f984580ea94bdb994132169a780" + integrity sha1-WTfdKH46T5hFgOqUvbmUEyFpp4A= + +"@commitlint/top-level@^13.0.0": + version "13.0.0" + resolved "https://registry.nlark.com/@commitlint/top-level/download/@commitlint/top-level-13.0.0.tgz?cache=0&sync_timestamp=1627109336504&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Ftop-level%2Fdownload%2F%40commitlint%2Ftop-level-13.0.0.tgz#f8e1d1425240cd72c600e4da5716418c4ea0bda2" + integrity sha1-+OHRQlJAzXLGAOTaVxZBjE6gvaI= dependencies: find-up "^5.0.0" @@ -187,6 +216,18 @@ dependencies: chalk "^4.0.0" +"@commitlint/types@^13.1.0": + version "13.1.0" + resolved "https://registry.nlark.com/@commitlint/types/download/@commitlint/types-13.1.0.tgz?cache=0&sync_timestamp=1627109879640&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40commitlint%2Ftypes%2Fdownload%2F%40commitlint%2Ftypes-13.1.0.tgz#12cfb6e932372b1816af8900e2d10694add28191" + integrity sha1-Es+26TI3KxgWr4kA4tEGlK3SgZE= + dependencies: + chalk "^4.0.0" + +"@element-plus/icons@^0.0.11": + version "0.0.11" + resolved "https://registry.nlark.com/@element-plus/icons/download/@element-plus/icons-0.0.11.tgz#9b187c002774548b911850d17fa5fc2f9a515f57" + integrity sha1-mxh8ACd0VIuRGFDRf6X8L5pRX1c= + "@emmetio/abbreviation@^2.2.2": version "2.2.2" resolved "https://registry.npm.taobao.org/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz#746762fd9e7a8c2ea604f580c62e3cfe250e6989" @@ -240,10 +281,10 @@ resolved "https://registry.npm.taobao.org/@iconify/json-tools/download/@iconify/json-tools-1.0.10.tgz#d9a7050dbbe8bb29d684d4b3f9446ed2d0bea3cc" integrity sha1-2acFDbvouynWhNSz+URu0tC+o8w= -"@iconify/json@^1.1.378": - version "1.1.378" - resolved "https://registry.nlark.com/@iconify/json/download/@iconify/json-1.1.378.tgz?cache=0&sync_timestamp=1626677942608&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40iconify%2Fjson%2Fdownload%2F%40iconify%2Fjson-1.1.378.tgz#b43e42be6ee5b1ee7888f7c816dfa11495ae6240" - integrity sha1-tD5Cvm7lse54iPfIFt+hFJWuYkA= +"@iconify/json@^1.1.386": + version "1.1.386" + resolved "https://registry.nlark.com/@iconify/json/download/@iconify/json-1.1.386.tgz#e9e637ff15bb1f4b7cb4ae086026cc0b09313ac3" + integrity sha1-6eY3/xW7H0t8tK4IYCbMCwkxOsM= "@nodelib/fs.scandir@2.1.4": version "2.1.4" @@ -271,10 +312,10 @@ resolved "https://registry.npm.taobao.org/@popperjs/core/download/@popperjs/core-2.9.2.tgz?cache=0&sync_timestamp=1617290098226&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40popperjs%2Fcore%2Fdownload%2F%40popperjs%2Fcore-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353" integrity sha1-rep7aVPLs0ZRdmsFSEaOdDxqI1M= -"@rollup/pluginutils@^4.1.0": - version "4.1.0" - resolved "https://registry.npm.taobao.org/@rollup/pluginutils/download/@rollup/pluginutils-4.1.0.tgz?cache=0&sync_timestamp=1603767889260&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838" - integrity sha1-Dcxhx4DjkldVT+t/dyB9zsoTyDg= +"@rollup/pluginutils@^4.1.1": + version "4.1.1" + resolved "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz?cache=0&sync_timestamp=1626393703548&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec" + integrity sha1-HU2obdTt7RVlalfZM/2iuaCNR+w= dependencies: estree-walker "^2.0.1" picomatch "^2.2.2" @@ -294,11 +335,6 @@ resolved "https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= -"@types/lodash@^4.14.161": - version "4.14.170" - resolved "https://registry.nlark.com/@types/lodash/download/@types/lodash-4.14.170.tgz#0d67711d4bf7f4ca5147e9091b847479b87925d6" - integrity sha1-DWdxHUv39MpRR+kJG4R0ebh5JdY= - "@types/minimist@^1.2.0": version "1.2.1" resolved "https://registry.nlark.com/@types/minimist/download/@types/minimist-1.2.1.tgz?cache=0&sync_timestamp=1621241867849&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimist%2Fdownload%2F%40types%2Fminimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256" @@ -334,189 +370,152 @@ resolved "https://registry.nlark.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz?cache=0&sync_timestamp=1621243798725&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fthrottle-debounce%2Fdownload%2F%40types%2Fthrottle-debounce-2.1.0.tgz#1c3df624bfc4b62f992d3012b84c56d41eab3776" integrity sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y= -"@typescript-eslint/eslint-plugin@^4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.28.4.tgz?cache=0&sync_timestamp=1626715757255&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-4.28.4.tgz#e73c8cabbf3f08dee0e1bda65ed4e622ae8f8921" - integrity sha1-5zyMq78/CN7g4b2mXtTmIq6PiSE= +"@typescript-eslint/eslint-plugin@^4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.29.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-4.29.1.tgz#808d206e2278e809292b5de752a91105da85860b" + integrity sha1-gI0gbiJ46AkpK13nUqkRBdqFhgs= dependencies: - "@typescript-eslint/experimental-utils" "4.28.4" - "@typescript-eslint/scope-manager" "4.28.4" + "@typescript-eslint/experimental-utils" "4.29.1" + "@typescript-eslint/scope-manager" "4.29.1" debug "^4.3.1" functional-red-black-tree "^1.0.1" regexpp "^3.1.0" semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/experimental-utils@4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.28.4.tgz#9c70c35ebed087a5c70fb0ecd90979547b7fec96" - integrity sha1-nHDDXr7Qh6XHD7Ds2Ql5VHt/7JY= +"@typescript-eslint/experimental-utils@4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.29.1.tgz?cache=0&sync_timestamp=1628529563546&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fexperimental-utils%2Fdownload%2F%40typescript-eslint%2Fexperimental-utils-4.29.1.tgz#0af2b17b0296b60c6b207f11062119fa9c5a8994" + integrity sha1-CvKxewKWtgxrIH8RBiEZ+pxaiZQ= dependencies: "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.28.4" - "@typescript-eslint/types" "4.28.4" - "@typescript-eslint/typescript-estree" "4.28.4" + "@typescript-eslint/scope-manager" "4.29.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/typescript-estree" "4.29.1" eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/parser@^4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.28.4.tgz?cache=0&sync_timestamp=1626715756323&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fparser%2Fdownload%2F%40typescript-eslint%2Fparser-4.28.4.tgz#bc462dc2779afeefdcf49082516afdc3e7b96fab" - integrity sha1-vEYtwnea/u/c9JCCUWr9w+e5b6s= +"@typescript-eslint/parser@^4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.29.1.tgz#17dfbb45c9032ffa0fe15881d20fbc2a4bdeb02d" + integrity sha1-F9+7RckDL/oP4ViB0g+8KkvesC0= dependencies: - "@typescript-eslint/scope-manager" "4.28.4" - "@typescript-eslint/types" "4.28.4" - "@typescript-eslint/typescript-estree" "4.28.4" + "@typescript-eslint/scope-manager" "4.29.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/typescript-estree" "4.29.1" debug "^4.3.1" -"@typescript-eslint/scope-manager@4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.28.4.tgz?cache=0&sync_timestamp=1626715953543&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fscope-manager%2Fdownload%2F%40typescript-eslint%2Fscope-manager-4.28.4.tgz#bdbce9b6a644e34f767bd68bc17bb14353b9fe7f" - integrity sha1-vbzptqZE4092e9aLwXuxQ1O5/n8= +"@typescript-eslint/scope-manager@4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.29.1.tgz?cache=0&sync_timestamp=1628529549324&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fscope-manager%2Fdownload%2F%40typescript-eslint%2Fscope-manager-4.29.1.tgz#f25da25bc6512812efa2ce5ebd36619d68e61358" + integrity sha1-8l2iW8ZRKBLvos5evTZhnWjmE1g= dependencies: - "@typescript-eslint/types" "4.28.4" - "@typescript-eslint/visitor-keys" "4.28.4" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/visitor-keys" "4.29.1" -"@typescript-eslint/types@4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.28.4.tgz?cache=0&sync_timestamp=1626715941479&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.28.4.tgz#41acbd79b5816b7c0dd7530a43d97d020d3aeb42" - integrity sha1-Qay9ebWBa3wN11MKQ9l9Ag0660I= +"@typescript-eslint/types@4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.29.1.tgz?cache=0&sync_timestamp=1628529548201&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.29.1.tgz#94cce6cf7cc83451df03339cda99d326be2feaf5" + integrity sha1-lMzmz3zINFHfAzOc2pnTJr4v6vU= -"@typescript-eslint/typescript-estree@4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.28.4.tgz#252e6863278dc0727244be9e371eb35241c46d00" - integrity sha1-JS5oYyeNwHJyRL6eNx6zUkHEbQA= +"@typescript-eslint/typescript-estree@4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.29.1.tgz#7b32a25ff8e51f2671ccc6b26cdbee3b1e6c5e7f" + integrity sha1-ezKiX/jlHyZxzMaybNvuOx5sXn8= dependencies: - "@typescript-eslint/types" "4.28.4" - "@typescript-eslint/visitor-keys" "4.28.4" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/visitor-keys" "4.29.1" debug "^4.3.1" globby "^11.0.3" is-glob "^4.0.1" semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/visitor-keys@4.28.4": - version "4.28.4" - resolved "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.28.4.tgz?cache=0&sync_timestamp=1626715965165&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fvisitor-keys%2Fdownload%2F%40typescript-eslint%2Fvisitor-keys-4.28.4.tgz#92dacfefccd6751cbb0a964f06683bfd72d0c4d3" - integrity sha1-ktrP78zWdRy7CpZPBmg7/XLQxNM= +"@typescript-eslint/visitor-keys@4.29.1": + version "4.29.1" + resolved "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.29.1.tgz?cache=0&sync_timestamp=1628529549137&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fvisitor-keys%2Fdownload%2F%40typescript-eslint%2Fvisitor-keys-4.29.1.tgz#0615be8b55721f5e854f3ee99f1a714f2d093e5d" + integrity sha1-BhW+i1VyH16FTz7pnxpxTy0JPl0= dependencies: - "@typescript-eslint/types" "4.28.4" + "@typescript-eslint/types" "4.29.1" eslint-visitor-keys "^2.0.0" -"@vitejs/plugin-vue@^1.2.5": - version "1.2.5" - resolved "https://registry.nlark.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.2.5.tgz#ef7dc4a92e53fe866b54bcc1266788513262ac09" - integrity sha1-733EqS5T/oZrVLzBJmeIUTJirAk= +"@vitejs/plugin-vue@^1.4.0": + version "1.4.0" + resolved "https://registry.nlark.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.4.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vitejs%2Fplugin-vue%2Fdownload%2F%40vitejs%2Fplugin-vue-1.4.0.tgz#962ae01b7fd16ad4007898c64ed639136e12215b" + integrity sha1-lirgG3/RatQAeJjGTtY5E24SIVs= -"@volar/code-gen@^0.26.5": - version "0.26.5" - resolved "https://registry.nlark.com/@volar/code-gen/download/@volar/code-gen-0.26.5.tgz#49bbbb40c58a4960465282c61bd48136106e21dc" - integrity sha1-Sbu7QMWKSWBGUoLGG9SBNhBuIdw= +"@volar/code-gen@^0.26.16": + version "0.26.16" + resolved "https://registry.nlark.com/@volar/code-gen/download/@volar/code-gen-0.26.16.tgz?cache=0&sync_timestamp=1628759747165&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40volar%2Fcode-gen%2Fdownload%2F%40volar%2Fcode-gen-0.26.16.tgz#4199a5a86c4eaa058b03bd270c95d4cfbf98f67d" + integrity sha1-QZmlqGxOqgWLA70nDJXUz7+Y9n0= dependencies: - "@volar/shared" "^0.26.5" - "@volar/source-map" "^0.26.5" + "@volar/shared" "^0.26.16" + "@volar/source-map" "^0.26.16" -"@volar/html2pug@^0.26.5": - version "0.26.5" - resolved "https://registry.nlark.com/@volar/html2pug/download/@volar/html2pug-0.26.5.tgz#31349812f8fa51c1651f150aa0cdf7d9c75a9ee1" - integrity sha1-MTSYEvj6UcFlHxUKoM332cdanuE= +"@volar/html2pug@^0.26.16": + version "0.26.16" + resolved "https://registry.nlark.com/@volar/html2pug/download/@volar/html2pug-0.26.16.tgz?cache=0&sync_timestamp=1628759745869&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40volar%2Fhtml2pug%2Fdownload%2F%40volar%2Fhtml2pug-0.26.16.tgz#ba31e005d1994823019d1cc1af548a2b5626a2b7" + integrity sha1-ujHgBdGZSCMBnRzBr1SKK1Ymorc= dependencies: domelementtype "^2.2.0" domhandler "^4.2.0" htmlparser2 "^6.1.0" pug "^3.0.2" -"@volar/shared@^0.26.5": - version "0.26.5" - resolved "https://registry.nlark.com/@volar/shared/download/@volar/shared-0.26.5.tgz#2ffd7e5c81f0798f22b53aca8c0dfe0ae14f5f4f" - integrity sha1-L/1+XIHweY8itTrKjA3+CuFPX08= +"@volar/shared@^0.26.16": + version "0.26.16" + resolved "https://registry.nlark.com/@volar/shared/download/@volar/shared-0.26.16.tgz?cache=0&sync_timestamp=1628759746076&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40volar%2Fshared%2Fdownload%2F%40volar%2Fshared-0.26.16.tgz#07c94c1d2745958a2ce3b415b5a192cdae5f58ec" + integrity sha1-B8lMHSdFlYos47QVtaGSza5fWOw= dependencies: upath "^2.0.1" vscode-jsonrpc "^8.0.0-next.1" + vscode-uri "^3.0.2" -"@volar/source-map@^0.26.5": - version "0.26.5" - resolved "https://registry.nlark.com/@volar/source-map/download/@volar/source-map-0.26.5.tgz#31ffe56b7a2cd221289ba50776aa4211e5f40f9f" - integrity sha1-Mf/la3os0iEom6UHdqpCEeX0D58= +"@volar/source-map@^0.26.16": + version "0.26.16" + resolved "https://registry.nlark.com/@volar/source-map/download/@volar/source-map-0.26.16.tgz?cache=0&sync_timestamp=1628759746969&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40volar%2Fsource-map%2Fdownload%2F%40volar%2Fsource-map-0.26.16.tgz#3eb8186f1cd1ac0d3a1ddf23bc5ceb0713c95f37" + integrity sha1-PrgYbxzRrA06Hd8jvFzrBxPJXzc= dependencies: - "@volar/shared" "^0.26.5" + "@volar/shared" "^0.26.16" -"@volar/transforms@^0.26.5": - version "0.26.5" - resolved "https://registry.nlark.com/@volar/transforms/download/@volar/transforms-0.26.5.tgz#03a48c6a8af967031d68896ac7a9c85e15d97cf1" - integrity sha1-A6SMaor5ZwMdaIlqx6nIXhXZfPE= +"@volar/transforms@^0.26.16": + version "0.26.16" + resolved "https://registry.nlark.com/@volar/transforms/download/@volar/transforms-0.26.16.tgz?cache=0&sync_timestamp=1628759746524&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40volar%2Ftransforms%2Fdownload%2F%40volar%2Ftransforms-0.26.16.tgz#531d63072c04d4f0a15367c3708dc4ccf384f681" + integrity sha1-Ux1jBywE1PChU2fDcI3EzPOE9oE= dependencies: - "@volar/shared" "^0.26.5" + "@volar/shared" "^0.26.16" -"@vue/compiler-core@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.0.11.tgz#5ef579e46d7b336b8735228758d1c2c505aae69a" - integrity sha1-XvV55G17M2uHNSKHWNHCxQWq5po= +"@vue/compiler-core@3.2.2": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.2.2.tgz#8d3e29f129579ed9b14f48af735fd8d95f248504" + integrity sha1-jT4p8SlXntmxT0ivc1/Y2V8khQQ= dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/shared" "3.0.11" + "@vue/shared" "3.2.2" estree-walker "^2.0.1" source-map "^0.6.1" -"@vue/compiler-core@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.1.2.tgz?cache=0&sync_timestamp=1626738333426&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-core%2Fdownload%2F%40vue%2Fcompiler-core-3.1.2.tgz#31ab1d88e1706a5c7a545faeeb64c31bd0101db0" - integrity sha1-MasdiOFwalx6VF+u62TDG9AQHbA= +"@vue/compiler-dom@3.2.2", "@vue/compiler-dom@^3.2.1": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.2.tgz?cache=0&sync_timestamp=1628696486067&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-dom%2Fdownload%2F%40vue%2Fcompiler-dom-3.2.2.tgz#26e198498746c53047c3744d26fc95e670692ab7" + integrity sha1-JuGYSYdGxTBHw3RNJvyV5nBpKrc= dependencies: - "@babel/parser" "^7.12.0" - "@babel/types" "^7.12.0" - "@vue/shared" "3.1.2" - estree-walker "^2.0.1" - source-map "^0.6.1" + "@vue/compiler-core" "3.2.2" + "@vue/shared" "3.2.2" -"@vue/compiler-core@3.1.5": - version "3.1.5" - resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.1.5.tgz?cache=0&sync_timestamp=1626738333426&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-core%2Fdownload%2F%40vue%2Fcompiler-core-3.1.5.tgz#298f905b6065d6d81ff63756f98c60876b393c87" - integrity sha1-KY+QW2Bl1tgf9jdW+Yxgh2s5PIc= - dependencies: - "@babel/parser" "^7.12.0" - "@babel/types" "^7.12.0" - "@vue/shared" "3.1.5" - estree-walker "^2.0.1" - source-map "^0.6.1" - -"@vue/compiler-dom@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee" - integrity sha1-sV/ByQk3H9ZxdGAgulW12rSnMO4= - dependencies: - "@vue/compiler-core" "3.0.11" - "@vue/shared" "3.0.11" - -"@vue/compiler-dom@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.1.2.tgz?cache=0&sync_timestamp=1626738334040&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-dom%2Fdownload%2F%40vue%2Fcompiler-dom-3.1.2.tgz#75a7731bcc5d9718183a3c56c18e992f7c13e7b1" - integrity sha1-dadzG8xdlxgYOjxWwY6ZL3wT57E= - dependencies: - "@vue/compiler-core" "3.1.2" - "@vue/shared" "3.1.2" - -"@vue/compiler-dom@3.1.5": - version "3.1.5" - resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.1.5.tgz?cache=0&sync_timestamp=1626738334040&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-dom%2Fdownload%2F%40vue%2Fcompiler-dom-3.1.5.tgz#cbb97020c62a5faa3fbc2a97916bd98041ac9856" - integrity sha1-y7lwIMYqX6o/vCqXkWvZgEGsmFY= - dependencies: - "@vue/compiler-core" "3.1.5" - "@vue/shared" "3.1.5" - -"@vue/compiler-sfc@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.1.2.tgz?cache=0&sync_timestamp=1626737967541&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.1.2.tgz#23ff1e366d887b964899568bffcb11e3d0511fc4" - integrity sha1-I/8eNm2Ie5ZImVaL/8sR49BRH8Q= +"@vue/compiler-sfc@^3.2.1", "@vue/compiler-sfc@^3.2.2": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.2.tgz#5b7b13b07689be8e4880d856f72d1be500785be9" + integrity sha1-W3sTsHaJvo5IgNhW9y0b5QB4W+k= dependencies: "@babel/parser" "^7.13.9" "@babel/types" "^7.13.0" "@types/estree" "^0.0.48" - "@vue/compiler-core" "3.1.2" - "@vue/compiler-dom" "3.1.2" - "@vue/compiler-ssr" "3.1.2" - "@vue/shared" "3.1.2" + "@vue/compiler-core" "3.2.2" + "@vue/compiler-dom" "3.2.2" + "@vue/compiler-ssr" "3.2.2" + "@vue/shared" "3.2.2" consolidate "^0.16.0" estree-walker "^2.0.1" hash-sum "^2.0.0" @@ -528,44 +527,18 @@ postcss-selector-parser "^6.0.4" source-map "^0.6.1" -"@vue/compiler-sfc@^3.1.5": - version "3.1.5" - resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.1.5.tgz?cache=0&sync_timestamp=1626737967541&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.1.5.tgz#e61e54f3a963b0f4a8e523fbb8632390dc52b0d6" - integrity sha1-5h5U86ljsPSo5SP7uGMjkNxSsNY= +"@vue/compiler-ssr@3.2.2": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.2.tgz#633bb8e01f00a969c35ca12db32be7fe4c7185a9" + integrity sha1-Yzu44B8AqWnDXKEtsyvn/kxxhak= dependencies: - "@babel/parser" "^7.13.9" - "@babel/types" "^7.13.0" - "@types/estree" "^0.0.48" - "@vue/compiler-core" "3.1.5" - "@vue/compiler-dom" "3.1.5" - "@vue/compiler-ssr" "3.1.5" - "@vue/shared" "3.1.5" - consolidate "^0.16.0" - estree-walker "^2.0.1" - hash-sum "^2.0.0" - lru-cache "^5.1.1" - magic-string "^0.25.7" - merge-source-map "^1.1.0" - postcss "^8.1.10" - postcss-modules "^4.0.0" - postcss-selector-parser "^6.0.4" - source-map "^0.6.1" + "@vue/compiler-dom" "3.2.2" + "@vue/shared" "3.2.2" -"@vue/compiler-ssr@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.1.2.tgz?cache=0&sync_timestamp=1626738334858&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-ssr%2Fdownload%2F%40vue%2Fcompiler-ssr-3.1.2.tgz#e33ad0876d9b96f0950e22b0e174b94c1b049d2d" - integrity sha1-4zrQh22blvCVDiKw4XS5TBsEnS0= - dependencies: - "@vue/compiler-dom" "3.1.2" - "@vue/shared" "3.1.2" - -"@vue/compiler-ssr@3.1.5": - version "3.1.5" - resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.1.5.tgz?cache=0&sync_timestamp=1626738334858&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-ssr%2Fdownload%2F%40vue%2Fcompiler-ssr-3.1.5.tgz#f068652774293256a1e53084bed48a67682df9d2" - integrity sha1-8GhlJ3QpMlah5TCEvtSKZ2gt+dI= - dependencies: - "@vue/compiler-dom" "3.1.5" - "@vue/shared" "3.1.5" +"@vue/devtools-api@^6.0.0-beta.14", "@vue/devtools-api@^6.0.0-beta.15": + version "6.0.0-beta.15" + resolved "https://registry.nlark.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.15.tgz#ad7cb384e062f165bcf9c83732125bffbc2ad83d" + integrity sha1-rXyzhOBi8WW8+cg3MhJb/7wq2D0= "@vue/eslint-config-prettier@^6.0.0": version "6.0.0" @@ -581,73 +554,76 @@ dependencies: vue-eslint-parser "^7.0.0" -"@vue/reactivity@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.0.11.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Freactivity%2Fdownload%2F%40vue%2Freactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b" - integrity sha1-B7WINJ/QViaxfzUAy+99S9tNvQs= +"@vue/reactivity@3.2.2", "@vue/reactivity@^3.2.1": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.2.2.tgz#d37011a68395e038a3cf5256af52d48c591b06b6" + integrity sha1-03ARpoOV4Dijz1JWr1LUjFkbBrY= dependencies: - "@vue/shared" "3.0.11" + "@vue/shared" "3.2.2" -"@vue/reactivity@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.1.2.tgz#66fa530dd726d2fef285ae55d02106a727db463b" - integrity sha1-ZvpTDdcm0v7yha5V0CEGpyfbRjs= +"@vue/runtime-core@3.2.2": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.2.2.tgz?cache=0&sync_timestamp=1628696463763&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-core%2Fdownload%2F%40vue%2Fruntime-core-3.2.2.tgz#b9a7250783de19dd8dd6febf008084b0f9144586" + integrity sha1-uaclB4PeGd2N1v6/AICEsPkURYY= dependencies: - "@vue/shared" "3.1.2" + "@vue/reactivity" "3.2.2" + "@vue/shared" "3.2.2" -"@vue/runtime-core@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44" - integrity sha1-xS38as8yFUk2I1UsHCkZCAxWLkQ= +"@vue/runtime-dom@3.2.2": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.2.tgz?cache=0&sync_timestamp=1628696468457&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-dom%2Fdownload%2F%40vue%2Fruntime-dom-3.2.2.tgz#6d0da23ed1cfc702477f4b8c5dc4f9335c94e119" + integrity sha1-bQ2iPtHPxwJHf0uMXcT5M1yU4Rk= dependencies: - "@vue/reactivity" "3.0.11" - "@vue/shared" "3.0.11" - -"@vue/runtime-dom@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337" - integrity sha1-elUt8hkHlCch/raWHEGOIippkzc= - dependencies: - "@vue/runtime-core" "3.0.11" - "@vue/shared" "3.0.11" + "@vue/runtime-core" "3.2.2" + "@vue/shared" "3.2.2" csstype "^2.6.8" -"@vue/shared@3.0.11": - version "3.0.11" - resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" - integrity sha1-INIt0Np9NYuyHBf5vehigVJkLHc= +"@vue/shared@3.2.2", "@vue/shared@^3.2.1": + version "3.2.2" + resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.2.2.tgz#6104185ebd57af5a14ac51c1f491b2205fc24054" + integrity sha1-YQQYXr1Xr1oUrFHB9JGyIF/CQFQ= -"@vue/shared@3.1.2": - version "3.1.2" - resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.1.2.tgz?cache=0&sync_timestamp=1626738297950&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fshared%2Fdownload%2F%40vue%2Fshared-3.1.2.tgz#1069c0bc7d6f4bd15ccf3a5f3be29450aca368f9" - integrity sha1-EGnAvH1vS9FczzpfO+KUUKyjaPk= +"@vueuse/core@^5.3.0": + version "5.3.0" + resolved "https://registry.nlark.com/@vueuse/core/download/@vueuse/core-5.3.0.tgz#d8c6e939e18089afa224fab6e443fae2bdb57a51" + integrity sha1-2MbpOeGAia+iJPq25EP64r21elE= + dependencies: + "@vueuse/shared" "5.3.0" + vue-demi "*" -"@vue/shared@3.1.5": - version "3.1.5" - resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.1.5.tgz?cache=0&sync_timestamp=1626738297950&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fshared%2Fdownload%2F%40vue%2Fshared-3.1.5.tgz#74ee3aad995d0a3996a6bb9533d4d280514ede03" - integrity sha1-dO46rZldCjmWpruVM9TSgFFO3gM= +"@vueuse/shared@5.3.0": + version "5.3.0" + resolved "https://registry.nlark.com/@vueuse/shared/download/@vueuse/shared-5.3.0.tgz#2b9583f80f1284242f808925e7e141310e400e45" + integrity sha1-K5WD+A8ShCQvgIkl5+FBMQ5ADkU= + dependencies: + vue-demi "*" -"@windicss/config@1.2.4": - version "1.2.4" - resolved "https://registry.nlark.com/@windicss/config/download/@windicss/config-1.2.4.tgz#24b36d30c1698fff14a9bacaebc93afaf2fe9019" - integrity sha1-JLNtMMFpj/8UqbrK68k6+vL+kBk= +"@windicss/config@1.2.7": + version "1.2.7" + resolved "https://registry.nlark.com/@windicss/config/download/@windicss/config-1.2.7.tgz#c70bde7de272574f7a33eb9a1d7f80bdbffe48ba" + integrity sha1-xwvefeJyV096M+uaHX+Avb/+SLo= dependencies: debug "^4.3.2" - jiti "^1.10.1" - windicss "^3.1.4" + jiti "^1.11.0" + windicss "^3.1.6" -"@windicss/plugin-utils@1.2.4": - version "1.2.4" - resolved "https://registry.nlark.com/@windicss/plugin-utils/download/@windicss/plugin-utils-1.2.4.tgz#b319355d6e9b4e529c965b5a55af6d57679e417f" - integrity sha1-sxk1XW6bTlKclltaVa9tV2eeQX8= +"@windicss/plugin-utils@1.2.7": + version "1.2.7" + resolved "https://registry.nlark.com/@windicss/plugin-utils/download/@windicss/plugin-utils-1.2.7.tgz#aa2c571f66600ce2c916c9c47efe8eafb229908c" + integrity sha1-qixXH2ZgDOLJFsnEfv6Or7IpkIw= dependencies: "@antfu/utils" "^0.2.4" - "@windicss/config" "1.2.4" + "@windicss/config" "1.2.7" debug "^4.3.2" - fast-glob "^3.2.6" + fast-glob "^3.2.7" magic-string "^0.25.7" micromatch "^4.0.4" - windicss "^3.1.4" + windicss "^3.1.6" + +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.npm.taobao.org/@yarnpkg/lockfile/download/@yarnpkg/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha1-53qX+9NFt22DJF7c0X05OxtB+zE= JSONStream@^1.0.4: version "1.3.5" @@ -816,6 +792,11 @@ async@0.9.x: resolved "https://registry.nlark.com/async/download/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.npm.taobao.org/at-least-node/download/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" @@ -986,6 +967,11 @@ chardet@^0.7.0: optionalDependencies: fsevents "~2.3.1" +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y= + clean-css@^4.2.3: version "4.2.3" resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.3.tgz?cache=0&sync_timestamp=1616153455026&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fclean-css%2Fdownload%2Fclean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" @@ -1063,6 +1049,13 @@ colorette@^1.2.2: resolved "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha1-y8x51emcrqLb8Q6zom/Ys+as+pQ= +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.nlark.com/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8= + dependencies: + delayed-stream "~1.0.0" + commander@^2.20.0: version "2.20.3" resolved "https://registry.nlark.com/commander/download/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" @@ -1186,6 +1179,17 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -1202,7 +1206,7 @@ cssesc@^3.0.0: csstype@^2.6.8: version "2.6.17" - resolved "https://registry.nlark.com/csstype/download/csstype-2.6.17.tgz?cache=0&sync_timestamp=1618818466657&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e" + resolved "https://registry.nlark.com/csstype/download/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e" integrity sha1-TPMOuH4dGgBdi2UQ+VKSQT9qHA4= cz-conventional-changelog@3.2.0: @@ -1301,7 +1305,7 @@ decamelize@^1.1.0: resolved "https://registry.nlark.com/decamelize/download/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= -dedent@0.7.0, dedent@^0.7.0: +dedent@0.7.0: version "0.7.0" resolved "https://registry.npm.taobao.org/dedent/download/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= @@ -1318,6 +1322,11 @@ define-properties@^1.1.3: dependencies: object-keys "^1.0.12" +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + detect-file@^1.0.0: version "1.0.0" resolved "https://registry.npm.taobao.org/detect-file/download/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" @@ -1416,13 +1425,13 @@ ejs@^3.1.6: dependencies: jake "^10.6.1" -element-plus@^1.0.2-beta.55: - version "1.0.2-beta.55" - resolved "https://registry.nlark.com/element-plus/download/element-plus-1.0.2-beta.55.tgz?cache=0&sync_timestamp=1625823476329&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felement-plus%2Fdownload%2Felement-plus-1.0.2-beta.55.tgz#d95886649560c4edf21568e6d4a822e4c74fcdd0" - integrity sha1-2ViGZJVgxO3yFWjm1Kgi5MdPzdA= +element-plus@^1.0.2-beta.70: + version "1.0.2-beta.70" + resolved "https://registry.nlark.com/element-plus/download/element-plus-1.0.2-beta.70.tgz?cache=0&sync_timestamp=1628175099230&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felement-plus%2Fdownload%2Felement-plus-1.0.2-beta.70.tgz#13058f4e78c5e73b19a915404d71076a13a2616e" + integrity sha1-EwWPTnjF5zsZqRVATXEHahOiYW4= dependencies: + "@element-plus/icons" "^0.0.11" "@popperjs/core" "^2.4.4" - "@types/lodash" "^4.14.161" async-validator "^3.4.0" dayjs "1.x" lodash "^4.17.20" @@ -1489,10 +1498,10 @@ es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: string.prototype.trimstart "^1.0.4" unbox-primitive "^1.0.1" -es-module-lexer@^0.6.0: - version "0.6.0" - resolved "https://registry.nlark.com/es-module-lexer/download/es-module-lexer-0.6.0.tgz?cache=0&sync_timestamp=1625523919137&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-module-lexer%2Fdownload%2Fes-module-lexer-0.6.0.tgz#e72ab05b7412e62b9be37c37a09bdb6000d706f0" - integrity sha1-5yqwW3QS5iub43w3oJvbYADXBvA= +es-module-lexer@^0.7.1: + version "0.7.1" + resolved "https://registry.nlark.com/es-module-lexer/download/es-module-lexer-0.7.1.tgz?cache=0&sync_timestamp=1625523919137&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-module-lexer%2Fdownload%2Fes-module-lexer-0.7.1.tgz#c2c8e0f46f2df06274cdaf0dd3f3b33e0a0b267d" + integrity sha1-wsjg9G8t8GJ0za8N0/OzPgoLJn0= es-to-primitive@^1.2.1: version "1.2.1" @@ -1544,33 +1553,33 @@ eslint-config-prettier@^8.3.0: resolved "https://registry.nlark.com/eslint-config-prettier/download/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" integrity sha1-90cbILb+ipqSVMxoRFQgKIai3Xo= -eslint-import-resolver-node@^0.3.4: - version "0.3.4" - resolved "https://registry.npm.taobao.org/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" - integrity sha1-hf+oGULCUBLYIxCW3fZ5wDBCxxc= +eslint-import-resolver-node@^0.3.5: + version "0.3.5" + resolved "https://registry.nlark.com/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.5.tgz#939bbb0f74e179e757ca87f7a4a890dabed18ac4" + integrity sha1-k5u7D3TheedXyof3pKiQ2r7RisQ= dependencies: - debug "^2.6.9" - resolve "^1.13.1" + debug "^3.2.7" + resolve "^1.20.0" -eslint-module-utils@^2.6.1: - version "2.6.1" - resolved "https://registry.nlark.com/eslint-module-utils/download/eslint-module-utils-2.6.1.tgz?cache=0&sync_timestamp=1620972183296&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-module-utils%2Fdownload%2Feslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233" - integrity sha1-tRvh5HPdDeHF6mOOIkKcJJDqgjM= +eslint-module-utils@^2.6.2: + version "2.6.2" + resolved "https://registry.nlark.com/eslint-module-utils/download/eslint-module-utils-2.6.2.tgz?cache=0&sync_timestamp=1628456039535&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-module-utils%2Fdownload%2Feslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" + integrity sha1-lOVUDdFf4VIuj/o+yNs7f6fnpTQ= dependencies: debug "^3.2.7" pkg-dir "^2.0.0" -eslint-plugin-import@^2.23.4: - version "2.23.4" - resolved "https://registry.nlark.com/eslint-plugin-import/download/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97" - integrity sha1-jc6x7Wtz5G5Q7JpbskEbZF59PZc= +eslint-plugin-import@^2.24.0: + version "2.24.0" + resolved "https://registry.nlark.com/eslint-plugin-import/download/eslint-plugin-import-2.24.0.tgz?cache=0&sync_timestamp=1628458245337&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-plugin-import%2Fdownload%2Feslint-plugin-import-2.24.0.tgz#697ffd263e24da5e84e03b282f5fb62251777177" + integrity sha1-aX/9Jj4k2l6E4DsoL1+2IlF3cXc= dependencies: array-includes "^3.1.3" array.prototype.flat "^1.2.4" debug "^2.6.9" doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.4" - eslint-module-utils "^2.6.1" + eslint-import-resolver-node "^0.3.5" + eslint-module-utils "^2.6.2" find-up "^2.0.0" has "^1.0.3" is-core-module "^2.4.0" @@ -1588,15 +1597,15 @@ eslint-plugin-prettier@^3.4.0: dependencies: prettier-linter-helpers "^1.0.0" -eslint-plugin-vue@^7.14.0: - version "7.14.0" - resolved "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-7.14.0.tgz#8c00f211064bd2708fc1aa4abd0592538fbb2cb1" - integrity sha1-jADyEQZL0nCPwapKvQWSU4+7LLE= +eslint-plugin-vue@^7.16.0: + version "7.16.0" + resolved "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-7.16.0.tgz?cache=0&sync_timestamp=1628592355337&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-7.16.0.tgz#7fe9fea039a190b108319c1380adf543ef57707d" + integrity sha1-f+n+oDmhkLEIMZwTgK31Q+9XcH0= dependencies: eslint-utils "^2.1.0" natural-compare "^1.4.0" semver "^6.3.0" - vue-eslint-parser "^7.9.0" + vue-eslint-parser "^7.10.0" eslint-scope@^5.1.1: version "5.1.1" @@ -1630,10 +1639,10 @@ eslint-visitor-keys@^2.0.0: resolved "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha1-9lMoJZMFknOSyTjtROsKXJsr0wM= -eslint@^7.31.0: - version "7.31.0" - resolved "https://registry.nlark.com/eslint/download/eslint-7.31.0.tgz#f972b539424bf2604907a970860732c5d99d3aca" - integrity sha1-+XK1OUJL8mBJB6lwhgcyxdmdOso= +eslint@^7.32.0: + version "7.32.0" + resolved "https://registry.nlark.com/eslint/download/eslint-7.32.0.tgz?cache=0&sync_timestamp=1627685236231&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint%2Fdownload%2Feslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha1-xtMooUvj+wjI0dIeEsAv23oqgS0= dependencies: "@babel/code-frame" "7.12.11" "@eslint/eslintrc" "^0.4.3" @@ -1786,7 +1795,7 @@ fast-glob@^3.1.1: micromatch "^4.0.2" picomatch "^2.2.1" -fast-glob@^3.2.6: +fast-glob@^3.2.6, fast-glob@^3.2.7: version "3.2.7" resolved "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" integrity sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE= @@ -1892,6 +1901,13 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/find-yarn-workspace-root/download/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha1-9H+40jnJAOt4F5qoG2ZnPqyI970= + dependencies: + micromatch "^4.0.2" + findup-sync@^4.0.0: version "4.0.0" resolved "https://registry.npm.taobao.org/findup-sync/download/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" @@ -1920,6 +1936,15 @@ follow-redirects@^1.10.0: resolved "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555300559&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" integrity sha1-2RFN7Qoc/dM04WTmZirQK/2R/0M= +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.npm.taobao.org/form-data/download/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha1-k5Gdrq82HuUpWEubMWZNwSyfpFI= + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + fs-extra@8.1.0: version "8.1.0" resolved "https://registry.nlark.com/fs-extra/download/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1929,7 +1954,25 @@ fs-extra@8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.1.0: +fs-extra@^10.0.0: + version "10.0.0" + resolved "https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" + integrity sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E= + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.nlark.com/fs-extra/download/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha1-TxicRKoSO4lfcigE9V6iPq3DSOk= + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.nlark.com/fs-extra/download/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0= @@ -2090,6 +2133,11 @@ globby@^11.0.3: merge2 "^1.3.0" slash "^3.0.0" +graceful-fs@^4.1.11: + version "4.2.8" + resolved "https://registry.nlark.com/graceful-fs/download/graceful-fs-4.2.8.tgz?cache=0&sync_timestamp=1628194078324&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo= + graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.6" resolved "https://registry.nlark.com/graceful-fs/download/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" @@ -2308,6 +2356,13 @@ is-callable@^1.1.4, is-callable@^1.2.3: resolved "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" integrity sha1-ix4FALc6HXbHBIdjbzaOUZ3o244= +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw= + dependencies: + ci-info "^2.0.0" + is-core-module@^2.2.0, is-core-module@^2.4.0: version "2.4.0" resolved "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" @@ -2320,6 +2375,11 @@ is-date-object@^1.0.1: resolved "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5" integrity sha1-VQz8wDr62gXuo90wmBx7CVUfc+U= +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao= + is-expression@^4.0.0: version "4.0.0" resolved "https://registry.npm.taobao.org/is-expression/download/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab" @@ -2437,6 +2497,13 @@ is-windows@^1.0.1: resolved "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-windows%2Fdownload%2Fis-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0= +is-wsl@^2.1.1: + version "2.2.0" + resolved "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE= + dependencies: + is-docker "^2.0.0" + isexe@^2.0.0: version "2.0.0" resolved "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz?cache=0&sync_timestamp=1618847054312&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fisexe%2Fdownload%2Fisexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -2452,10 +2519,10 @@ jake@^10.6.1: filelist "^1.0.1" minimatch "^3.0.4" -jiti@^1.10.1: - version "1.10.1" - resolved "https://registry.nlark.com/jiti/download/jiti-1.10.1.tgz#bc2a175b9435274dc8659d3d9a121a91c6b3a1af" - integrity sha1-vCoXW5Q1J03IZZ09mhIakcazoa8= +jiti@^1.11.0: + version "1.11.0" + resolved "https://registry.nlark.com/jiti/download/jiti-1.11.0.tgz#64120a30d97b9bf37b8b032cf4564dfadc28984c" + integrity sha1-ZBIKMNl7m/N7iwMs9FZN+twomEw= js-stringify@^1.0.2: version "1.0.2" @@ -2551,6 +2618,13 @@ kind-of@^6.0.3: resolved "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0= +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.npm.taobao.org/klaw-sync/download/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha1-H9LP1W67YlAYERTwpYEWcJnCsow= + dependencies: + graceful-fs "^4.1.11" + levn@^0.4.1: version "0.4.1" resolved "https://registry.npm.taobao.org/levn/download/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -2564,17 +2638,16 @@ lines-and-columns@^1.1.6: resolved "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= -lint-staged@^11.0.1: - version "11.0.1" - resolved "https://registry.nlark.com/lint-staged/download/lint-staged-11.0.1.tgz?cache=0&sync_timestamp=1626166320438&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flint-staged%2Fdownload%2Flint-staged-11.0.1.tgz#1b8ae8ed5a52ed87252db95fe008c2618c85f55a" - integrity sha1-G4ro7VpS7YclLblf4AjCYYyF9Vo= +lint-staged@^11.1.2: + version "11.1.2" + resolved "https://registry.nlark.com/lint-staged/download/lint-staged-11.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flint-staged%2Fdownload%2Flint-staged-11.1.2.tgz#4dd78782ae43ee6ebf2969cad9af67a46b33cd90" + integrity sha1-TdeHgq5D7m6/KWnK2a9npGszzZA= dependencies: chalk "^4.1.1" cli-truncate "^2.1.0" commander "^7.2.0" cosmiconfig "^7.0.0" debug "^4.3.1" - dedent "^0.7.0" enquirer "^2.3.6" execa "^5.0.0" listr2 "^3.8.2" @@ -2779,6 +2852,18 @@ micromatch@^4.0.2, micromatch@^4.0.4: braces "^3.0.1" picomatch "^2.2.3" +mime-db@1.49.0: + version "1.49.0" + resolved "https://registry.nlark.com/mime-db/download/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" + integrity sha1-89/eYMmenPO8lwHWh3ePU3ABy+0= + +mime-types@^2.1.12: + version "2.1.32" + resolved "https://registry.nlark.com/mime-types/download/mime-types-2.1.32.tgz?cache=0&sync_timestamp=1627407652875&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" + integrity sha1-HQDonn3n/gIAjbYQAdngKFJnD9U= + dependencies: + mime-db "1.49.0" + mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" @@ -2857,6 +2942,11 @@ natural-compare@^1.4.0: resolved "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz?cache=0&sync_timestamp=1614510016909&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnice-try%2Fdownload%2Fnice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y= + no-case@^3.0.4: version "3.0.4" resolved "https://registry.npm.taobao.org/no-case/download/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" @@ -2971,6 +3061,14 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +open@^7.4.2: + version "7.4.2" + resolved "https://registry.nlark.com/open/download/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha1-uBR+Jtzz5CYxbHMAif1x7dKcIyE= + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + optionator@^0.9.1: version "0.9.1" resolved "https://registry.nlark.com/optionator/download/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -3098,6 +3196,25 @@ pascal-case@^3.1.2: no-case "^3.0.4" tslib "^2.0.3" +patch-package@^6.4.7: + version "6.4.7" + resolved "https://registry.npm.taobao.org/patch-package/download/patch-package-6.4.7.tgz#2282d53c397909a0d9ef92dae3fdeb558382b148" + integrity sha1-IoLVPDl5CaDZ75La4/3rVYOCsUg= + dependencies: + "@yarnpkg/lockfile" "^1.1.0" + chalk "^2.4.2" + cross-spawn "^6.0.5" + find-yarn-workspace-root "^2.0.0" + fs-extra "^7.0.1" + is-ci "^2.0.0" + klaw-sync "^6.0.0" + minimist "^1.2.0" + open "^7.4.2" + rimraf "^2.6.3" + semver "^5.6.0" + slash "^2.0.0" + tmp "^0.0.33" + path-case@^3.0.4: version "3.0.4" resolved "https://registry.nlark.com/path-case/download/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" @@ -3121,6 +3238,11 @@ path-is-absolute@^1.0.0: resolved "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz?cache=0&sync_timestamp=1617971695678&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz?cache=0&sync_timestamp=1617971695678&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" @@ -3153,6 +3275,14 @@ pify@^3.0.0: resolved "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= +pinia@^2.0.0-rc.4: + version "2.0.0-rc.4" + resolved "https://registry.nlark.com/pinia/download/pinia-2.0.0-rc.4.tgz#43fca89aeb8d397ca9900f001c2125c4d6765dd6" + integrity sha1-Q/yomuuNOXypkA8AHCElxNZ2XdY= + dependencies: + "@vue/devtools-api" "^6.0.0-beta.15" + vue-demi latest + pkg-dir@^2.0.0: version "2.0.0" resolved "https://registry.npm.taobao.org/pkg-dir/download/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" @@ -3238,15 +3368,20 @@ postcss@^8.1.10: nanoid "^3.1.23" source-map-js "^0.6.2" -postcss@^8.3.5: - version "8.3.5" - resolved "https://registry.nlark.com/postcss/download/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" - integrity sha1-mCIWsRNBK8IKhiiekeuZSVKltwk= +postcss@^8.3.6: + version "8.3.6" + resolved "https://registry.nlark.com/postcss/download/postcss-8.3.6.tgz?cache=0&sync_timestamp=1626882933935&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea" + integrity sha1-JzDddql5afN/U7mmCWGXvjEcxOo= dependencies: colorette "^1.2.2" nanoid "^3.1.23" source-map-js "^0.6.2" +postinstall-postinstall@^2.1.0: + version "2.1.0" + resolved "https://registry.npm.taobao.org/postinstall-postinstall/download/postinstall-postinstall-2.1.0.tgz#4f7f77441ef539d1512c40bd04c71b06a4704ca3" + integrity sha1-T393RB71OdFRLEC9BMcbBqRwTKM= + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -3521,7 +3656,7 @@ resolve-global@1.0.0, resolve-global@^1.0.0: dependencies: global-dirs "^0.1.1" -resolve@^1.10.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.20.0: +resolve@^1.10.0, resolve@^1.15.1, resolve@^1.20.0: version "1.20.0" resolved "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU= @@ -3550,6 +3685,13 @@ reusify@^1.0.4: resolved "https://registry.nlark.com/reusify/download/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY= +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w= + dependencies: + glob "^7.1.3" + rimraf@^3.0.2: version "3.0.2" resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz?cache=0&sync_timestamp=1614946161596&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -3600,10 +3742,10 @@ safe-buffer@~5.2.0: resolved "https://registry.nlark.com/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= -sass@^1.35.2: - version "1.35.2" - resolved "https://registry.nlark.com/sass/download/sass-1.35.2.tgz#b732314fcdaf7ef8d0f1698698adc378043cb821" - integrity sha1-tzIxT82vfvjQ8WmGmK3DeAQ8uCE= +sass@^1.37.5: + version "1.37.5" + resolved "https://registry.nlark.com/sass/download/sass-1.37.5.tgz?cache=0&sync_timestamp=1628041580070&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsass%2Fdownload%2Fsass-1.37.5.tgz#f6838351f7cc814c4fcfe1d9a20e0cabbd1e7b3c" + integrity sha1-9oODUffMgUxPz+HZog4Mq70eezw= dependencies: chokidar ">=3.0.0 <4.0.0" @@ -3612,7 +3754,7 @@ semver-compare@^1.0.0: resolved "https://registry.nlark.com/semver-compare/download/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= -"semver@2 || 3 || 4 || 5": +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.nlark.com/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618847119601&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc= @@ -3638,6 +3780,13 @@ sentence-case@^3.0.4: tslib "^2.0.3" upper-case-first "^2.0.2" +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3645,6 +3794,11 @@ shebang-command@^2.0.0: dependencies: shebang-regex "^3.0.0" +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" @@ -3664,6 +3818,11 @@ signal-exit@^3.0.2, signal-exit@^3.0.3: resolved "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw= +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.nlark.com/slash/download/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q= + slash@^3.0.0: version "3.0.0" resolved "https://registry.nlark.com/slash/download/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -4031,11 +4190,6 @@ type-fest@^0.8.1: resolved "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1621402446336&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha1-CeJJ696FHTseSNJ8EFREZn8XuD0= -typescript-vscode-sh-plugin@^0.6.14: - version "0.6.14" - resolved "https://registry.nlark.com/typescript-vscode-sh-plugin/download/typescript-vscode-sh-plugin-0.6.14.tgz#a81031b502f6346a26ea49ce082438c3e353bb38" - integrity sha1-qBAxtQL2NGom6knOCCQ4w+NTuzg= - typescript@^4.3.5: version "4.3.5" resolved "https://registry.nlark.com/typescript/download/typescript-4.3.5.tgz?cache=0&sync_timestamp=1626678845753&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftypescript%2Fdownload%2Ftypescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" @@ -4112,10 +4266,10 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -vite-plugin-components@^0.13.0: - version "0.13.0" - resolved "https://registry.nlark.com/vite-plugin-components/download/vite-plugin-components-0.13.0.tgz#1554488ced1d5b54b11a798466fa99d31021bfa7" - integrity sha1-FVRIjO0dW1SxGnmEZvqZ0xAhv6c= +vite-plugin-components@^0.13.2: + version "0.13.2" + resolved "https://registry.nlark.com/vite-plugin-components/download/vite-plugin-components-0.13.2.tgz#9e1b1b90ca8a817954f5ac5ecc24dbbdf1cc1684" + integrity sha1-nhsbkMqKgXlU9axezCTbvfHMFoQ= dependencies: debug "^4.3.2" fast-glob "^3.2.6" @@ -4139,34 +4293,34 @@ vite-plugin-icons@^0.6.5: "@iconify/json-tools" "^1.0.10" vue-template-es2015-compiler "^1.9.1" -vite-plugin-style-import@^1.0.1: - version "1.0.1" - resolved "https://registry.nlark.com/vite-plugin-style-import/download/vite-plugin-style-import-1.0.1.tgz#bf61337dd11e4ebc0f355f271e06d374b1ca5c79" - integrity sha1-v2EzfdEeTrwPNV8nHgbTdLHKXHk= +vite-plugin-style-import@^1.1.1: + version "1.1.1" + resolved "https://registry.nlark.com/vite-plugin-style-import/download/vite-plugin-style-import-1.1.1.tgz#7ccebb042bce94eeb2f695c7339354a2dac48c25" + integrity sha1-fM67BCvOlO6y9pXHM5NUotrEjCU= dependencies: - "@rollup/pluginutils" "^4.1.0" + "@rollup/pluginutils" "^4.1.1" change-case "^4.1.2" debug "^4.3.2" - es-module-lexer "^0.6.0" + es-module-lexer "^0.7.1" magic-string "^0.25.7" -vite-plugin-windicss@^1.2.4: - version "1.2.4" - resolved "https://registry.nlark.com/vite-plugin-windicss/download/vite-plugin-windicss-1.2.4.tgz#b9ea60482dd8b6ba4fbc717ff5a9d17dedb0683b" - integrity sha1-uepgSC3YtrpPvHF/9anRfe2waDs= +vite-plugin-windicss@^1.2.7: + version "1.2.7" + resolved "https://registry.nlark.com/vite-plugin-windicss/download/vite-plugin-windicss-1.2.7.tgz#92671ec795ab1a8a4e520aff8117ac14c04d312f" + integrity sha1-kmcex5WrGopOUgr/gResFMBNMS8= dependencies: - "@windicss/plugin-utils" "1.2.4" + "@windicss/plugin-utils" "1.2.7" chalk "^4.1.1" debug "^4.3.2" - windicss "^3.1.4" + windicss "^3.1.6" -vite@^2.4.2: - version "2.4.2" - resolved "https://registry.nlark.com/vite/download/vite-2.4.2.tgz#07d00615775c808530bc9f65641062b349b67929" - integrity sha1-B9AGFXdcgIUwvJ9lZBBis0m2eSk= +vite@^2.4.4: + version "2.4.4" + resolved "https://registry.nlark.com/vite/download/vite-2.4.4.tgz?cache=0&sync_timestamp=1628530655989&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvite%2Fdownload%2Fvite-2.4.4.tgz#8c402a07ad45f168f6eb5428bead38f3e4363e47" + integrity sha1-jEAqB61F8Wj261Qovq048+Q2Pkc= dependencies: esbuild "^0.12.8" - postcss "^8.3.5" + postcss "^8.3.6" resolve "^1.20.0" rollup "^2.38.5" optionalDependencies: @@ -4260,26 +4414,25 @@ vscode-nls@^5.0.0: resolved "https://registry.npm.taobao.org/vscode-nls/download/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840" integrity sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA= -vscode-pug-languageservice@^0.26.5: - version "0.26.5" - resolved "https://registry.nlark.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.26.5.tgz#f9b65c7d4284478c0fbac16a184809c5627fa40e" - integrity sha1-+bZcfUKER4wPusFqGEgJxWJ/pA4= +vscode-pug-languageservice@^0.26.16: + version "0.26.16" + resolved "https://registry.nlark.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.26.16.tgz?cache=0&sync_timestamp=1628759746761&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-pug-languageservice%2Fdownload%2Fvscode-pug-languageservice-0.26.16.tgz#5ca99ea9cb94775ad0f2f1c4d8274a186bf06b5e" + integrity sha1-XKmeqcuUd1rQ8vHE2CdKGGvwa14= dependencies: - "@volar/code-gen" "^0.26.5" - "@volar/shared" "^0.26.5" - "@volar/source-map" "^0.26.5" - "@volar/transforms" "^0.26.5" + "@volar/code-gen" "^0.26.16" + "@volar/shared" "^0.26.16" + "@volar/source-map" "^0.26.16" + "@volar/transforms" "^0.26.16" pug-lexer "^5.0.1" pug-parser "^6.0.0" vscode-languageserver "^8.0.0-next.1" -vscode-typescript-languageservice@^0.26.5: - version "0.26.5" - resolved "https://registry.nlark.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.26.5.tgz#9e162d6e882bdc80054d8458a219e91addc4ed0f" - integrity sha1-nhYtbogr3IAFTYRYohnpGt3E7Q8= +vscode-typescript-languageservice@^0.26.16: + version "0.26.16" + resolved "https://registry.nlark.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.26.16.tgz?cache=0&sync_timestamp=1628759746317&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-typescript-languageservice%2Fdownload%2Fvscode-typescript-languageservice-0.26.16.tgz#d3a85fd04a77eccebf8b7d0a1889a94f907fd734" + integrity sha1-06hf0Ep37M6/i30KGImpT5B/1zQ= dependencies: - "@volar/shared" "^0.26.5" - typescript-vscode-sh-plugin "^0.6.14" + "@volar/shared" "^0.26.16" upath "^2.0.1" vscode-languageserver "^8.0.0-next.1" vscode-languageserver-textdocument "^1.0.1" @@ -4294,21 +4447,20 @@ vscode-uri@^3.0.2: resolved "https://registry.npm.taobao.org/vscode-uri/download/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0" integrity sha1-7P0dBmy470w6II3s26uajCPQVdA= -vscode-vue-languageservice@^0.26.0: - version "0.26.5" - resolved "https://registry.nlark.com/vscode-vue-languageservice/download/vscode-vue-languageservice-0.26.5.tgz#5f1e9d20ab7762f05f9b1f45d5972e8c5f6284a5" - integrity sha1-Xx6dIKt3YvBfmx9F1ZcujF9ihKU= +vscode-vue-languageservice@^0.26.6: + version "0.26.16" + resolved "https://registry.nlark.com/vscode-vue-languageservice/download/vscode-vue-languageservice-0.26.16.tgz?cache=0&sync_timestamp=1628759747371&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-vue-languageservice%2Fdownload%2Fvscode-vue-languageservice-0.26.16.tgz#c8fd96f390ec05cb1b4b194dcdd18dcea8714131" + integrity sha1-yP2W85DsBcsbSxlNzdGNzqhxQTE= dependencies: - "@volar/code-gen" "^0.26.5" - "@volar/html2pug" "^0.26.5" - "@volar/shared" "^0.26.5" - "@volar/source-map" "^0.26.5" - "@volar/transforms" "^0.26.5" - "@vue/compiler-dom" "3.1.2" - "@vue/compiler-sfc" "3.1.2" - "@vue/reactivity" "3.1.2" - "@vue/shared" "3.1.2" - jsonc-parser "^3.0.0" + "@volar/code-gen" "^0.26.16" + "@volar/html2pug" "^0.26.16" + "@volar/shared" "^0.26.16" + "@volar/source-map" "^0.26.16" + "@volar/transforms" "^0.26.16" + "@vue/compiler-dom" "^3.2.1" + "@vue/compiler-sfc" "^3.2.1" + "@vue/reactivity" "^3.2.1" + "@vue/shared" "^3.2.1" request-light "^0.5.4" upath "^2.0.1" vscode-css-languageservice "^5.1.4" @@ -4317,10 +4469,15 @@ vscode-vue-languageservice@^0.26.0: vscode-json-languageservice "^4.1.5" vscode-languageserver "^8.0.0-next.1" vscode-languageserver-textdocument "^1.0.1" - vscode-pug-languageservice "^0.26.5" - vscode-typescript-languageservice "^0.26.5" + vscode-pug-languageservice "^0.26.16" + vscode-typescript-languageservice "^0.26.16" -vue-eslint-parser@^7.0.0, vue-eslint-parser@^7.9.0: +vue-demi@*, vue-demi@latest: + version "0.11.2" + resolved "https://registry.nlark.com/vue-demi/download/vue-demi-0.11.2.tgz#faa06da53887c493a695b997f4fcb4784a667990" + integrity sha1-+qBtpTiHxJOmlbmX9Py0eEpmeZA= + +vue-eslint-parser@^7.0.0: version "7.9.0" resolved "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.9.0.tgz#5eeedc71f22ebc7b18b957d1ab171acf29a41e64" integrity sha1-Xu7ccfIuvHsYuVfRqxcazymkHmQ= @@ -4333,26 +4490,46 @@ vue-eslint-parser@^7.0.0, vue-eslint-parser@^7.9.0: lodash "^4.17.21" semver "^6.3.0" +vue-eslint-parser@^7.10.0: + version "7.10.0" + resolved "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.10.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-7.10.0.tgz#ea4e4b10fd10aa35c8a79ac783488d8abcd29be8" + integrity sha1-6k5LEP0QqjXIp5rHg0iNirzSm+g= + dependencies: + debug "^4.1.1" + eslint-scope "^5.1.1" + eslint-visitor-keys "^1.1.0" + espree "^6.2.1" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^6.3.0" + +vue-router@^4.0.11: + version "4.0.11" + resolved "https://registry.nlark.com/vue-router/download/vue-router-4.0.11.tgz#cd649a0941c635281763a20965b599643ddc68ed" + integrity sha1-zWSaCUHGNSgXY6IJZbWZZD3caO0= + dependencies: + "@vue/devtools-api" "^6.0.0-beta.14" + vue-template-es2015-compiler@^1.9.1: version "1.9.1" resolved "https://registry.npm.taobao.org/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" integrity sha1-HuO8mhbsv1EYvjNLsV+cRvgvWCU= -vue-tsc@^0.2.1: - version "0.2.1" - resolved "https://registry.nlark.com/vue-tsc/download/vue-tsc-0.2.1.tgz#81a5919472e60de096e71fe5568debe1f6f28687" - integrity sha1-gaWRlHLmDeCW5x/lVo3r4fbyhoc= +vue-tsc@^0.2.2: + version "0.2.2" + resolved "https://registry.nlark.com/vue-tsc/download/vue-tsc-0.2.2.tgz?cache=0&sync_timestamp=1626837915416&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-tsc%2Fdownload%2Fvue-tsc-0.2.2.tgz#e7fd5e5c789beb31840ad26082cfc8bb6356e733" + integrity sha1-5/1eXHib6zGECtJggs/Iu2NW5zM= dependencies: - vscode-vue-languageservice "^0.26.0" + vscode-vue-languageservice "^0.26.6" -vue@^3.0.5: - version "3.0.11" - resolved "https://registry.nlark.com/vue/download/vue-3.0.11.tgz?cache=0&sync_timestamp=1622060016098&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue%2Fdownload%2Fvue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f" - integrity sha1-yC+VlMv03MhpJB1MjdPgjZqPS18= +vue@^3.2.2: + version "3.2.2" + resolved "https://registry.nlark.com/vue/download/vue-3.2.2.tgz#11715cb71a02baefd0f6e6552dc623680eb1bf32" + integrity sha1-EXFctxoCuu/Q9uZVLcYjaA6xvzI= dependencies: - "@vue/compiler-dom" "3.0.11" - "@vue/runtime-dom" "3.0.11" - "@vue/shared" "3.0.11" + "@vue/compiler-dom" "3.2.2" + "@vue/runtime-dom" "3.2.2" + "@vue/shared" "3.2.2" which-boxed-primitive@^1.0.2: version "1.0.2" @@ -4365,7 +4542,7 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" -which@^1.2.14: +which@^1.2.14, which@^1.2.9: version "1.3.1" resolved "https://registry.nlark.com/which/download/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo= @@ -4379,10 +4556,10 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -windicss@^3.1.4, windicss@^3.1.5: - version "3.1.5" - resolved "https://registry.nlark.com/windicss/download/windicss-3.1.5.tgz#e9b6d6adcbc6f6c6e33e6625a3e5923b328f3137" - integrity sha1-6bbWrcvG9sbjPmYlo+WSOzKPMTc= +windicss@^3.1.6, windicss@^3.1.7: + version "3.1.7" + resolved "https://registry.nlark.com/windicss/download/windicss-3.1.7.tgz#8a3b8a07ed97c2c1354a6e31820d8059da35f724" + integrity sha1-ijuKB+2XwsE1Sm4xgg2AWdo19yQ= with@^7.0.0: version "7.0.2" @@ -4447,10 +4624,10 @@ yargs-parser@^20.2.2, yargs-parser@^20.2.3: resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" integrity sha1-Yd+FwRPt+1p6TjbriqYO9CPLyQo= -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086465147&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha1-HIK/D2tqZur85+8w43b0mhJHf2Y= +yargs@^17.0.0: + version "17.1.0" + resolved "https://registry.nlark.com/yargs/download/yargs-17.1.0.tgz#0cd9827a0572c9a1795361c4d1530e53ada168cf" + integrity sha1-DNmCegVyyaF5U2HE0VMOU62haM8= dependencies: cliui "^7.0.2" escalade "^3.1.1"