mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 17:09:23 +08:00
fix: typo
This commit is contained in:
@@ -4,9 +4,10 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "yarn install",
|
"bootstrap": "yarn install",
|
||||||
"serve": "esno ./build/script/preserve.ts && cross-env NODE_ENV=development vite",
|
"serve": "esno ./build/script/preserve.ts && cross-env NODE_ENV=development vite",
|
||||||
"build": "rimraf dist && cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
|
"build": " rimraf dist && cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
|
||||||
"build:site": "cross-env SITE=true npm run build ",
|
"build:site": "cross-env SITE=true npm run build ",
|
||||||
"build:no-cache": "yarn clean:cache && npm run build",
|
"build:no-cache": "yarn clean:cache && npm run build",
|
||||||
|
"typecheck": "typecheck .",
|
||||||
"report": "cross-env REPORT=true npm run build ",
|
"report": "cross-env REPORT=true npm run build ",
|
||||||
"preview": "npm run build && esno ./build/script/preview.ts",
|
"preview": "npm run build && esno ./build/script/preview.ts",
|
||||||
"preview:dist": "esno ./build/script/preview.ts",
|
"preview:dist": "esno ./build/script/preview.ts",
|
||||||
@@ -59,6 +60,8 @@
|
|||||||
"@typescript-eslint/eslint-plugin": "^4.6.0",
|
"@typescript-eslint/eslint-plugin": "^4.6.0",
|
||||||
"@typescript-eslint/parser": "^4.6.0",
|
"@typescript-eslint/parser": "^4.6.0",
|
||||||
"@vue/compiler-sfc": "^3.0.2",
|
"@vue/compiler-sfc": "^3.0.2",
|
||||||
|
"@vuedx/typecheck": "^0.2.4-0",
|
||||||
|
"@vuedx/typescript-plugin-vue": "^0.2.4-0",
|
||||||
"autoprefixer": "^9.8.6",
|
"autoprefixer": "^9.8.6",
|
||||||
"commitizen": "^4.2.2",
|
"commitizen": "^4.2.2",
|
||||||
"conventional-changelog-cli": "^2.1.0",
|
"conventional-changelog-cli": "^2.1.0",
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
props: {
|
props: {
|
||||||
// 指定角色可见
|
// 指定角色可见
|
||||||
value: {
|
value: {
|
||||||
type: [Number, Array, String] as PropType<RoleEnum | RoleEnum[]>,
|
type: [Number, Array, String] as PropType<RoleEnum | RoleEnum[] | string | string[]>,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
default: 'throttle',
|
default: 'throttle',
|
||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
type: String as PropType<'error' | 'warning' | 'success'>,
|
type: String as PropType<'error' | 'warning' | 'success' | ''>,
|
||||||
},
|
},
|
||||||
// 防抖节流时间
|
// 防抖节流时间
|
||||||
throttleTime: {
|
throttleTime: {
|
||||||
|
@@ -10,7 +10,7 @@ export interface DescItem {
|
|||||||
labelStyle?: any;
|
labelStyle?: any;
|
||||||
|
|
||||||
field: string;
|
field: string;
|
||||||
label: string;
|
label: any;
|
||||||
// 和并列
|
// 和并列
|
||||||
span?: number;
|
span?: number;
|
||||||
show?: (...arg: any) => boolean;
|
show?: (...arg: any) => boolean;
|
||||||
@@ -30,7 +30,7 @@ export interface DescOptions {
|
|||||||
* 数据
|
* 数据
|
||||||
* @type object
|
* @type object
|
||||||
*/
|
*/
|
||||||
data: object;
|
data: any;
|
||||||
/**
|
/**
|
||||||
* 内置的CollapseContainer组件配置
|
* 内置的CollapseContainer组件配置
|
||||||
* @type CollapseContainerOptions
|
* @type CollapseContainerOptions
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { ColSpanType } from 'ant-design-vue/types/grid/col';
|
import { ColSpanType } from 'ant-design-vue/types/grid/col';
|
||||||
|
|
||||||
export interface ColEx {
|
export interface ColEx {
|
||||||
style: object;
|
style?: any;
|
||||||
/**
|
/**
|
||||||
* raster number of cells to occupy, 0 corresponds to display: none
|
* raster number of cells to occupy, 0 corresponds to display: none
|
||||||
* @default none (0)
|
* @default none (0)
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="tinymce-container" :style="{ width: containerWidth }">
|
<div class="tinymce-container" :style="{ width: containerWidth }">
|
||||||
<textarea :id="tinymceId" visibility="hidden" ref="elRef"></textarea>
|
<textarea :id="tinymceId" ref="elRef"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
import { useScript } from '/@/hooks/web/useScript';
|
import { useScript } from '/@/hooks/web/useScript';
|
||||||
import { snowUuid } from '/@/utils/uuid';
|
import { snowUuid } from '/@/utils/uuid';
|
||||||
import { bindHandlers } from './helper';
|
import { bindHandlers } from './helper';
|
||||||
// import lineHeight from './lineHeight';
|
import lineHeight from './lineHeight';
|
||||||
|
|
||||||
const CDN_URL = 'https://cdn.bootcdn.net/ajax/libs/tinymce/5.5.1';
|
const CDN_URL = 'https://cdn.bootcdn.net/ajax/libs/tinymce/5.5.1';
|
||||||
|
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function initEditor() {
|
function initEditor() {
|
||||||
// getTinymce().PluginManager.add('lineHeight', lineHeight(getTinymce()));
|
getTinymce().PluginManager.add('lineHeight', lineHeight(getTinymce()));
|
||||||
getTinymce().init(unref(initOptions));
|
getTinymce().init(unref(initOptions));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
4
src/types/module.d.ts
vendored
Normal file
4
src/types/module.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
declare module 'ant-design-vue/es/locale/zh_CN';
|
||||||
|
declare module 'globby!/@/router/routes/modules/**/*.@(ts)';
|
||||||
|
declare module 'globby!/@/router/menus/modules/**/*.@(ts)';
|
||||||
|
declare const React: string;
|
11
src/types/shim-vue.d.ts
vendored
11
src/types/shim-vue.d.ts
vendored
@@ -1,11 +0,0 @@
|
|||||||
declare module '*.vue' {
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
const component: ReturnType<defineComponent>;
|
|
||||||
// import { ComponentOptions } from 'vue';
|
|
||||||
// const component: ReturnType<ComponentOptions>;
|
|
||||||
export default component;
|
|
||||||
}
|
|
||||||
// declare module '*.vue' {
|
|
||||||
// import Vue from 'vue';
|
|
||||||
// export default Vue;
|
|
||||||
// }
|
|
83
src/types/source.d.ts
vendored
83
src/types/source.d.ts
vendored
@@ -1,83 +0,0 @@
|
|||||||
declare module 'ant-design-vue/es/locale/zh_CN';
|
|
||||||
declare module 'globby!/@/router/routes/modules/**/*.@(ts)';
|
|
||||||
declare module 'globby!/@/router/menus/modules/**/*.@(ts)';
|
|
||||||
|
|
||||||
declare const React: string;
|
|
||||||
declare module '*.bmp' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.gif' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.jpg' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.jpeg' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.png' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.webp' {
|
|
||||||
const src: string;
|
|
||||||
export default src;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.json' {
|
|
||||||
/** 得到json表达的对象/数组【混入到代码中】
|
|
||||||
*/
|
|
||||||
const content: any | any[];
|
|
||||||
export default content;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.svg' {
|
|
||||||
/** 文件路径
|
|
||||||
*/
|
|
||||||
const content: string;
|
|
||||||
export = content;
|
|
||||||
}
|
|
||||||
declare module '*.scss' {
|
|
||||||
/** scss 导出 (:export{})
|
|
||||||
*/
|
|
||||||
const content: {
|
|
||||||
[className: string]: string;
|
|
||||||
};
|
|
||||||
export default content;
|
|
||||||
}
|
|
||||||
declare module '*.less' {
|
|
||||||
const content: {
|
|
||||||
[className: string]: string;
|
|
||||||
};
|
|
||||||
export default content;
|
|
||||||
}
|
|
||||||
declare module '*.styl' {
|
|
||||||
const content: {
|
|
||||||
[className: string]: string;
|
|
||||||
};
|
|
||||||
export default content;
|
|
||||||
}
|
|
||||||
declare module '*.css' {
|
|
||||||
/** 一个空对象
|
|
||||||
*/
|
|
||||||
const content: any;
|
|
||||||
export default content;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '*.module.scss' {
|
|
||||||
/** css 模块
|
|
||||||
*/
|
|
||||||
const content: {
|
|
||||||
[localClassName: string]: string;
|
|
||||||
};
|
|
||||||
export default content;
|
|
||||||
}
|
|
103
src/types/vue-app-env.d.ts
vendored
Normal file
103
src/types/vue-app-env.d.ts
vendored
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
declare module '*.vue' {
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
const Component: ReturnType<typeof defineComponent>;
|
||||||
|
export default Component;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare namespace NodeJS {
|
||||||
|
interface Process {
|
||||||
|
env: ProcessEnv;
|
||||||
|
}
|
||||||
|
interface ProcessEnv {
|
||||||
|
/**
|
||||||
|
* By default, there are two modes in Vite:
|
||||||
|
*
|
||||||
|
* * `development` is used by vite and vite serve
|
||||||
|
* * `production` is used by vite build
|
||||||
|
*
|
||||||
|
* You can overwrite the default mode used for a command by passing the --mode option flag.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
readonly NODE_ENV: 'development' | 'production';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare let process: NodeJS.Process;
|
||||||
|
|
||||||
|
declare module '*.bmp' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.gif' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.jpg' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.jpeg' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.png' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.webp' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.svg' {
|
||||||
|
const src: string;
|
||||||
|
export default src;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.json' {
|
||||||
|
const content: any | any[];
|
||||||
|
export default content;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.scss' {
|
||||||
|
const content: {
|
||||||
|
readonly [className: string]: string;
|
||||||
|
};
|
||||||
|
export default content;
|
||||||
|
}
|
||||||
|
declare module '*.less' {
|
||||||
|
const content: {
|
||||||
|
readonly [className: string]: string;
|
||||||
|
};
|
||||||
|
export default content;
|
||||||
|
}
|
||||||
|
declare module '*.styl' {
|
||||||
|
const content: {
|
||||||
|
readonly [className: string]: string;
|
||||||
|
};
|
||||||
|
export default content;
|
||||||
|
}
|
||||||
|
declare module '*.css' {
|
||||||
|
const content: any;
|
||||||
|
export default content;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.module.css' {
|
||||||
|
const classes: { readonly [key: string]: string };
|
||||||
|
export default classes;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.module.scss' {
|
||||||
|
const classes: { readonly [key: string]: string };
|
||||||
|
export default classes;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.module.sass' {
|
||||||
|
const classes: { readonly [key: string]: string };
|
||||||
|
export default classes;
|
||||||
|
}
|
@@ -4,7 +4,7 @@
|
|||||||
<template #customTitle>
|
<template #customTitle>
|
||||||
<span>
|
<span>
|
||||||
姓名
|
姓名
|
||||||
<BaseHelp class="ml-2" text="姓名" />
|
<BasicHelp class="ml-2" text="姓名" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #customAddress>
|
<template #customAddress>
|
||||||
@@ -20,9 +20,10 @@
|
|||||||
import { getCustomHeaderColumns } from './tableData';
|
import { getCustomHeaderColumns } from './tableData';
|
||||||
import { FormOutlined } from '@ant-design/icons-vue';
|
import { FormOutlined } from '@ant-design/icons-vue';
|
||||||
import { demoListApi } from '/@/api/demo/table';
|
import { demoListApi } from '/@/api/demo/table';
|
||||||
|
import { BasicHelp } from '/@/components/Basic';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: { BasicTable, FormOutlined },
|
components: { BasicTable, FormOutlined, BasicHelp },
|
||||||
setup() {
|
setup() {
|
||||||
const [registerTable] = useTable({
|
const [registerTable] = useTable({
|
||||||
title: '定高/头部自定义',
|
title: '定高/头部自定义',
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
"jsx": "react",
|
"jsx": "react",
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
"sourceMap": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"noUnusedParameters": true,
|
"noUnusedParameters": true,
|
||||||
@@ -26,6 +27,17 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"plugins": [
|
||||||
|
{
|
||||||
|
"name": "@vuedx/typescript-plugin-vue"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"src/**/*.ts",
|
||||||
|
"src/**/*.d.ts",
|
||||||
|
"src/**/*.tsx",
|
||||||
|
"src/**/*.vue"
|
||||||
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"dist",
|
"dist",
|
||||||
|
169
yarn.lock
169
yarn.lock
@@ -287,7 +287,7 @@
|
|||||||
chalk "^2.0.0"
|
chalk "^2.0.0"
|
||||||
js-tokens "^4.0.0"
|
js-tokens "^4.0.0"
|
||||||
|
|
||||||
"@babel/parser@^7.10.4", "@babel/parser@^7.12.0", "@babel/parser@^7.12.1", "@babel/parser@^7.12.3":
|
"@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.11.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.1", "@babel/parser@^7.12.3":
|
||||||
version "7.12.3"
|
version "7.12.3"
|
||||||
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd"
|
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd"
|
||||||
integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==
|
integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==
|
||||||
@@ -832,7 +832,7 @@
|
|||||||
"@babel/parser" "^7.10.4"
|
"@babel/parser" "^7.10.4"
|
||||||
"@babel/types" "^7.10.4"
|
"@babel/types" "^7.10.4"
|
||||||
|
|
||||||
"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1":
|
"@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.12.1":
|
||||||
version "7.12.1"
|
version "7.12.1"
|
||||||
resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e"
|
resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e"
|
||||||
integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==
|
integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==
|
||||||
@@ -1570,7 +1570,7 @@
|
|||||||
"@typescript-eslint/types" "4.6.0"
|
"@typescript-eslint/types" "4.6.0"
|
||||||
eslint-visitor-keys "^2.0.0"
|
eslint-visitor-keys "^2.0.0"
|
||||||
|
|
||||||
"@vue/compiler-core@3.0.2":
|
"@vue/compiler-core@*", "@vue/compiler-core@3.0.2", "@vue/compiler-core@^3.0.0-rc.5":
|
||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.2.tgz#7790b7a1fcbba5ace4d81a70ce59096fa5c95734"
|
resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.2.tgz#7790b7a1fcbba5ace4d81a70ce59096fa5c95734"
|
||||||
integrity sha512-GOlEMTlC/OdzBkKaKOniYErbkjoKxkBOmulxGmMR10I2JJX6TvXd/peaO/kla2xhpliV/M6Z4TLJp0yjAvRIAw==
|
integrity sha512-GOlEMTlC/OdzBkKaKOniYErbkjoKxkBOmulxGmMR10I2JJX6TvXd/peaO/kla2xhpliV/M6Z4TLJp0yjAvRIAw==
|
||||||
@@ -1589,7 +1589,7 @@
|
|||||||
"@vue/compiler-core" "3.0.2"
|
"@vue/compiler-core" "3.0.2"
|
||||||
"@vue/shared" "3.0.2"
|
"@vue/shared" "3.0.2"
|
||||||
|
|
||||||
"@vue/compiler-sfc@^3.0.2":
|
"@vue/compiler-sfc@*", "@vue/compiler-sfc@^3.0.0-rc.5", "@vue/compiler-sfc@^3.0.2":
|
||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.2.tgz#22c70fed72c347a4d5fa2db2e80594b3193dce57"
|
resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.2.tgz#22c70fed72c347a4d5fa2db2e80594b3193dce57"
|
||||||
integrity sha512-viYjT5ehDSLM3v0jQ9hbTs4I5e/7lSlYsDOp7TQ1qcwHRvzoTQMTkFpY/Iae+LFKM124Ld17tBfXgfrZl9dt+g==
|
integrity sha512-viYjT5ehDSLM3v0jQ9hbTs4I5e/7lSlYsDOp7TQ1qcwHRvzoTQMTkFpY/Iae+LFKM124Ld17tBfXgfrZl9dt+g==
|
||||||
@@ -1648,6 +1648,78 @@
|
|||||||
resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.2.tgz#419bd85a2ebdbd4f42963e98c5a1b103452176d9"
|
resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.2.tgz#419bd85a2ebdbd4f42963e98c5a1b103452176d9"
|
||||||
integrity sha512-Zx869zlNoujFOclKIoYmkh8ES2RcS/+Jn546yOiPyZ+3+Ejivnr+fb8l+DdXUEFjo+iVDNR3KyLzg03aBFfZ4Q==
|
integrity sha512-Zx869zlNoujFOclKIoYmkh8ES2RcS/+Jn546yOiPyZ+3+Ejivnr+fb8l+DdXUEFjo+iVDNR3KyLzg03aBFfZ4Q==
|
||||||
|
|
||||||
|
"@vuedx/analyze@0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/analyze/-/analyze-0.2.4-0.tgz#52766a6dcd2867320409fe517540fd0bf0394d48"
|
||||||
|
integrity sha512-GX5lqZPwyHLrJaL36L5qcBLBGcvTz/LiGwv1nwxuZ2HpO4rr2mH6CemA0mOKXiQ5aaqbAYqeAzMQf+i/AEViQg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.10.4"
|
||||||
|
"@babel/parser" "^7.10.5"
|
||||||
|
"@babel/traverse" "^7.11.0"
|
||||||
|
"@babel/types" "^7.10.5"
|
||||||
|
"@vue/compiler-core" "^3.0.0-rc.5"
|
||||||
|
"@vue/compiler-sfc" "^3.0.0-rc.5"
|
||||||
|
cli-highlight "^2.1.4"
|
||||||
|
commander "^6.0.0"
|
||||||
|
fast-glob "^3.2.4"
|
||||||
|
hash-sum "^2.0.0"
|
||||||
|
|
||||||
|
"@vuedx/compiler-tsx@0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/compiler-tsx/-/compiler-tsx-0.2.4-0.tgz#a4d734519f689e82287d5bbd8048cdcf1932aee6"
|
||||||
|
integrity sha512-XzJdijqmHPiNNV555TgBfv/7iMmwmpQYCimpTtccrVch7m1R+64YZqtgg43lkWZLwwANhPVborJh/Pw8wCUokQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.11.0"
|
||||||
|
"@babel/types" "^7.11.0"
|
||||||
|
"@vue/compiler-core" "^3.0.0-rc.5"
|
||||||
|
"@vuedx/template-ast-types" "0.2.4-0"
|
||||||
|
lodash.camelcase "^4.3.0"
|
||||||
|
|
||||||
|
"@vuedx/template-ast-types@0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/template-ast-types/-/template-ast-types-0.2.4-0.tgz#a1cead2e9631f8fa710a9c5622412f600e290a1f"
|
||||||
|
integrity sha512-9xFfTPH4rTxNsITOJMinlzDJf3+8VS/ao02gfHZMs57XgHszghYzVFKpfs2G0056xYAKrfoJSEJw51eGSB9KQA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "^3.0.0-rc.5"
|
||||||
|
|
||||||
|
"@vuedx/typecheck@^0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/typecheck/-/typecheck-0.2.4-0.tgz#d88e942b9b62d31cc8df3ffcfc16265b6da37665"
|
||||||
|
integrity sha512-pOOgz5epvks6lcSfqCotm7fcen4UHl/h1pUiabtV/EKoNKh3OXMB8IBzRHwWv0h1SrkMuKVqMzj52liZIVZRfw==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "*"
|
||||||
|
"@vue/compiler-sfc" "*"
|
||||||
|
"@vuedx/typescript-plugin-vue" "0.2.4-0"
|
||||||
|
"@vuedx/vue-virtual-textdocument" "0.2.4-0"
|
||||||
|
chalk "^4.1.0"
|
||||||
|
minimist "^1.2.5"
|
||||||
|
|
||||||
|
"@vuedx/typescript-plugin-vue@0.2.4-0", "@vuedx/typescript-plugin-vue@^0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.2.4-0.tgz#e07485139e28de823e5153d96a2f71e82d0f75f2"
|
||||||
|
integrity sha512-BB5S29B2JRmmaglM8gJD/VT0Ika9RUnZYUCOMCopHCItyTbFC7RLJkIZg9rZS77R87/alD5W316WxqgE8C9XYA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "^3.0.0-rc.5"
|
||||||
|
"@vuedx/analyze" "0.2.4-0"
|
||||||
|
"@vuedx/template-ast-types" "0.2.4-0"
|
||||||
|
"@vuedx/vue-virtual-textdocument" "0.2.4-0"
|
||||||
|
de-indent "^1.0.2"
|
||||||
|
quick-lru "^5.1.1"
|
||||||
|
typescript "^3.9.7"
|
||||||
|
vscode-uri "^2.1.2"
|
||||||
|
|
||||||
|
"@vuedx/vue-virtual-textdocument@0.2.4-0":
|
||||||
|
version "0.2.4-0"
|
||||||
|
resolved "https://registry.npmjs.org/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.2.4-0.tgz#ea5eb9d17b83b1ebf1e5b4e7313634bc2c4c2a54"
|
||||||
|
integrity sha512-eCgyvN5/O27UWlAohwuHzlPftoxEIrEz6zEDncXKFb7Gzzp5EoNlptXN16tJoYGHi1duz4aMnEg6p5xoBSqArQ==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "^3.0.0-rc.5"
|
||||||
|
"@vue/compiler-sfc" "^3.0.0-rc.5"
|
||||||
|
"@vuedx/analyze" "0.2.4-0"
|
||||||
|
"@vuedx/compiler-tsx" "0.2.4-0"
|
||||||
|
vscode-languageserver-textdocument "^1.0.1"
|
||||||
|
vscode-uri "^2.1.2"
|
||||||
|
|
||||||
JSONStream@^1.0.4:
|
JSONStream@^1.0.4:
|
||||||
version "1.3.5"
|
version "1.3.5"
|
||||||
resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
|
resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
|
||||||
@@ -1791,7 +1863,7 @@ ant-design-vue@^2.0.0-beta.10:
|
|||||||
shallowequal "^1.0.2"
|
shallowequal "^1.0.2"
|
||||||
warning "^4.0.0"
|
warning "^4.0.0"
|
||||||
|
|
||||||
any-promise@^1.1.0:
|
any-promise@^1.0.0, any-promise@^1.1.0:
|
||||||
version "1.3.0"
|
version "1.3.0"
|
||||||
resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
|
resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
|
||||||
integrity sha1-q8av7tzqUugJzcA3au0845Y10X8=
|
integrity sha1-q8av7tzqUugJzcA3au0845Y10X8=
|
||||||
@@ -2246,6 +2318,14 @@ chalk@4.1.0, chalk@^4.0.0, chalk@^4.1.0:
|
|||||||
ansi-styles "^4.1.0"
|
ansi-styles "^4.1.0"
|
||||||
supports-color "^7.1.0"
|
supports-color "^7.1.0"
|
||||||
|
|
||||||
|
chalk@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
||||||
|
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
||||||
|
dependencies:
|
||||||
|
ansi-styles "^4.1.0"
|
||||||
|
supports-color "^7.1.0"
|
||||||
|
|
||||||
character-entities-html4@^1.0.0:
|
character-entities-html4@^1.0.0:
|
||||||
version "1.1.4"
|
version "1.1.4"
|
||||||
resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
|
resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
|
||||||
@@ -2327,6 +2407,18 @@ cli-cursor@^3.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
restore-cursor "^3.1.0"
|
restore-cursor "^3.1.0"
|
||||||
|
|
||||||
|
cli-highlight@^2.1.4:
|
||||||
|
version "2.1.4"
|
||||||
|
resolved "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.4.tgz#098cb642cf17f42adc1c1145e07f960ec4d7522b"
|
||||||
|
integrity sha512-s7Zofobm20qriqDoU9sXptQx0t2R9PEgac92mENNm7xaEe1hn71IIMsXMK+6encA6WRCWWxIGQbipr3q998tlQ==
|
||||||
|
dependencies:
|
||||||
|
chalk "^3.0.0"
|
||||||
|
highlight.js "^9.6.0"
|
||||||
|
mz "^2.4.0"
|
||||||
|
parse5 "^5.1.1"
|
||||||
|
parse5-htmlparser2-tree-adapter "^5.1.1"
|
||||||
|
yargs "^15.0.0"
|
||||||
|
|
||||||
cli-spinners@^2.4.0:
|
cli-spinners@^2.4.0:
|
||||||
version "2.5.0"
|
version "2.5.0"
|
||||||
resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047"
|
resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047"
|
||||||
@@ -2867,6 +2959,11 @@ dateformat@^3.0.0:
|
|||||||
resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
|
resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
|
||||||
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
|
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
|
||||||
|
|
||||||
|
de-indent@^1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
|
||||||
|
integrity sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=
|
||||||
|
|
||||||
debug@^2.2.0, debug@^2.3.3:
|
debug@^2.2.0, debug@^2.3.3:
|
||||||
version "2.6.9"
|
version "2.6.9"
|
||||||
resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
||||||
@@ -4075,6 +4172,11 @@ he@^1.2.0:
|
|||||||
resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
|
resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
|
||||||
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
|
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
|
||||||
|
|
||||||
|
highlight.js@^9.6.0:
|
||||||
|
version "9.18.3"
|
||||||
|
resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.3.tgz#a1a0a2028d5e3149e2380f8a865ee8516703d634"
|
||||||
|
integrity sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ==
|
||||||
|
|
||||||
homedir-polyfill@^1.0.1:
|
homedir-polyfill@^1.0.1:
|
||||||
version "1.0.3"
|
version "1.0.3"
|
||||||
resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
|
resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
|
||||||
@@ -5464,6 +5566,15 @@ mute-stream@0.0.8:
|
|||||||
resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
|
resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
|
||||||
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
|
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
|
||||||
|
|
||||||
|
mz@^2.4.0:
|
||||||
|
version "2.7.0"
|
||||||
|
resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
|
||||||
|
integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
|
||||||
|
dependencies:
|
||||||
|
any-promise "^1.0.0"
|
||||||
|
object-assign "^4.0.1"
|
||||||
|
thenify-all "^1.0.0"
|
||||||
|
|
||||||
nanoid@^3.0.1:
|
nanoid@^3.0.1:
|
||||||
version "3.1.16"
|
version "3.1.16"
|
||||||
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.16.tgz#b21f0a7d031196faf75314d7c65d36352beeef64"
|
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.16.tgz#b21f0a7d031196faf75314d7c65d36352beeef64"
|
||||||
@@ -5846,6 +5957,18 @@ parse-passwd@^1.0.0:
|
|||||||
resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
|
resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
|
||||||
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
|
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
|
||||||
|
|
||||||
|
parse5-htmlparser2-tree-adapter@^5.1.1:
|
||||||
|
version "5.1.1"
|
||||||
|
resolved "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-5.1.1.tgz#e8c743d4e92194d5293ecde2b08be31e67461cbc"
|
||||||
|
integrity sha512-CF+TKjXqoqyDwHqBhFQ+3l5t83xYi6fVT1tQNg+Ye0JRLnTxWvIroCjEp1A0k4lneHNBGnICUf0cfYVYGEazqw==
|
||||||
|
dependencies:
|
||||||
|
parse5 "^5.1.1"
|
||||||
|
|
||||||
|
parse5@^5.1.1:
|
||||||
|
version "5.1.1"
|
||||||
|
resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
|
||||||
|
integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
|
||||||
|
|
||||||
parseurl@^1.3.2:
|
parseurl@^1.3.2:
|
||||||
version "1.3.3"
|
version "1.3.3"
|
||||||
resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
|
resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
|
||||||
@@ -6263,6 +6386,11 @@ quick-lru@^4.0.1:
|
|||||||
resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
|
resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
|
||||||
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
|
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
|
||||||
|
|
||||||
|
quick-lru@^5.1.1:
|
||||||
|
version "5.1.1"
|
||||||
|
resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
|
||||||
|
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
|
||||||
|
|
||||||
raf@^3.4.0:
|
raf@^3.4.0:
|
||||||
version "3.4.1"
|
version "3.4.1"
|
||||||
resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
|
resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
|
||||||
@@ -7578,6 +7706,20 @@ text-table@^0.2.0:
|
|||||||
resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
||||||
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
||||||
|
|
||||||
|
thenify-all@^1.0.0:
|
||||||
|
version "1.6.0"
|
||||||
|
resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
|
||||||
|
integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=
|
||||||
|
dependencies:
|
||||||
|
thenify ">= 3.1.0 < 4"
|
||||||
|
|
||||||
|
"thenify@>= 3.1.0 < 4":
|
||||||
|
version "3.3.1"
|
||||||
|
resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
|
||||||
|
integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==
|
||||||
|
dependencies:
|
||||||
|
any-promise "^1.0.0"
|
||||||
|
|
||||||
through2@^2.0.0, through2@^2.0.2:
|
through2@^2.0.0, through2@^2.0.2:
|
||||||
version "2.0.5"
|
version "2.0.5"
|
||||||
resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
|
resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
|
||||||
@@ -7763,6 +7905,11 @@ typedarray-to-buffer@^3.1.5:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-typedarray "^1.0.0"
|
is-typedarray "^1.0.0"
|
||||||
|
|
||||||
|
typescript@^3.9.7:
|
||||||
|
version "3.9.7"
|
||||||
|
resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
|
||||||
|
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
|
||||||
|
|
||||||
typescript@^4.0.5:
|
typescript@^4.0.5:
|
||||||
version "4.0.5"
|
version "4.0.5"
|
||||||
resolved "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz#ae9dddfd1069f1cb5beb3ef3b2170dd7c1332389"
|
resolved "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz#ae9dddfd1069f1cb5beb3ef3b2170dd7c1332389"
|
||||||
@@ -8082,6 +8229,16 @@ vite@^1.0.0-rc.8:
|
|||||||
vue "^3.0.2"
|
vue "^3.0.2"
|
||||||
ws "^7.3.1"
|
ws "^7.3.1"
|
||||||
|
|
||||||
|
vscode-languageserver-textdocument@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f"
|
||||||
|
integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==
|
||||||
|
|
||||||
|
vscode-uri@^2.1.2:
|
||||||
|
version "2.1.2"
|
||||||
|
resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c"
|
||||||
|
integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==
|
||||||
|
|
||||||
vue-eslint-parser@^7.1.1:
|
vue-eslint-parser@^7.1.1:
|
||||||
version "7.1.1"
|
version "7.1.1"
|
||||||
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3"
|
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3"
|
||||||
@@ -8460,7 +8617,7 @@ yargs@^13.2.4:
|
|||||||
y18n "^4.0.0"
|
y18n "^4.0.0"
|
||||||
yargs-parser "^13.1.2"
|
yargs-parser "^13.1.2"
|
||||||
|
|
||||||
yargs@^15.1.0:
|
yargs@^15.0.0, yargs@^15.1.0:
|
||||||
version "15.4.1"
|
version "15.4.1"
|
||||||
resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
|
resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
|
||||||
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
|
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
|
||||||
|
Reference in New Issue
Block a user