mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-11 21:12:50 +00:00
解决异常路由导致 eps.d.ts 错误
This commit is contained in:
parent
f89035e48f
commit
ca823845ab
@ -39,7 +39,7 @@
|
|||||||
"xlsx": "^0.18.5"
|
"xlsx": "^0.18.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@cool-vue/vite-plugin": "^8.1.1",
|
"@cool-vue/vite-plugin": "^8.1.2",
|
||||||
"@intlify/unplugin-vue-i18n": "^6.0.3",
|
"@intlify/unplugin-vue-i18n": "^6.0.3",
|
||||||
"@rushstack/eslint-patch": "^1.10.5",
|
"@rushstack/eslint-patch": "^1.10.5",
|
||||||
"@tsconfig/node20": "^20.1.4",
|
"@tsconfig/node20": "^20.1.4",
|
||||||
|
|||||||
27
packages/vite-plugin/dist/index.js
vendored
27
packages/vite-plugin/dist/index.js
vendored
@ -161,7 +161,8 @@
|
|||||||
}
|
}
|
||||||
// 格式化代码
|
// 格式化代码
|
||||||
async function formatCode(text) {
|
async function formatCode(text) {
|
||||||
return prettier.format(text, {
|
return prettier
|
||||||
|
.format(text, {
|
||||||
parser: "typescript",
|
parser: "typescript",
|
||||||
useTabs: true,
|
useTabs: true,
|
||||||
tabWidth: 4,
|
tabWidth: 4,
|
||||||
@ -170,6 +171,11 @@
|
|||||||
singleQuote: false,
|
singleQuote: false,
|
||||||
printWidth: 100,
|
printWidth: 100,
|
||||||
trailingComma: "none",
|
trailingComma: "none",
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
error(`[cool-eps] Failed to format /build/cool/eps.d.ts. Please delete the file and try again`);
|
||||||
|
return null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// 获取数据
|
// 获取数据
|
||||||
@ -265,12 +271,16 @@
|
|||||||
function formatName(name) {
|
function formatName(name) {
|
||||||
return (name || "").replace(/[:,\s,\/,-]/g, "");
|
return (name || "").replace(/[:,\s,\/,-]/g, "");
|
||||||
}
|
}
|
||||||
|
// 检查方法名,包含特殊字符则忽略
|
||||||
|
function checkName(name) {
|
||||||
|
return name && !["{", "}", ":"].some((e) => name.includes(e));
|
||||||
|
}
|
||||||
// 创建 Entity
|
// 创建 Entity
|
||||||
function createEntity() {
|
function createEntity() {
|
||||||
const ignore = [];
|
const ignore = [];
|
||||||
let t0 = "";
|
let t0 = "";
|
||||||
for (const item of list) {
|
for (const item of list) {
|
||||||
if (!item.name)
|
if (!checkName(item.name))
|
||||||
continue;
|
continue;
|
||||||
let t = `interface ${formatName(item.name)} {`;
|
let t = `interface ${formatName(item.name)} {`;
|
||||||
// 合并多个列
|
// 合并多个列
|
||||||
@ -319,6 +329,9 @@
|
|||||||
k = "";
|
k = "";
|
||||||
for (const i in d) {
|
for (const i in d) {
|
||||||
const name = k + toCamel(firstUpperCase(formatName(i)));
|
const name = k + toCamel(firstUpperCase(formatName(i)));
|
||||||
|
// 检查方法名
|
||||||
|
if (!checkName(name))
|
||||||
|
continue;
|
||||||
if (d[i].namespace) {
|
if (d[i].namespace) {
|
||||||
// 查找配置
|
// 查找配置
|
||||||
const item = list.find((e) => (e.prefix || "") === `/${d[i].namespace}`);
|
const item = list.find((e) => (e.prefix || "") === `/${d[i].namespace}`);
|
||||||
@ -330,7 +343,10 @@
|
|||||||
const permission = [];
|
const permission = [];
|
||||||
item.api.forEach((a) => {
|
item.api.forEach((a) => {
|
||||||
// 方法名
|
// 方法名
|
||||||
const n = toCamel(formatName(a.name || lodash.last(a.path.split("/")) || ""));
|
const n = toCamel(formatName(a.name || lodash.last(a.path.split("/"))));
|
||||||
|
// 检查方法名
|
||||||
|
if (!checkName(n))
|
||||||
|
return;
|
||||||
if (n) {
|
if (n) {
|
||||||
// 参数类型
|
// 参数类型
|
||||||
let q = [];
|
let q = [];
|
||||||
@ -340,7 +356,8 @@
|
|||||||
if (p.description) {
|
if (p.description) {
|
||||||
q.push(`\n/** ${p.description} */\n`);
|
q.push(`\n/** ${p.description} */\n`);
|
||||||
}
|
}
|
||||||
if (p.name.includes(":")) {
|
// 检查参数名
|
||||||
|
if (!checkName(p.name)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const a = `${p.name}${p.required ? "" : "?"}`;
|
const a = `${p.name}${p.required ? "" : "?"}`;
|
||||||
@ -462,7 +479,7 @@
|
|||||||
const content = await formatCode(text);
|
const content = await formatCode(text);
|
||||||
const local_content = readFile(getEpsPath("eps.d.ts"));
|
const local_content = readFile(getEpsPath("eps.d.ts"));
|
||||||
// 是否需要更新
|
// 是否需要更新
|
||||||
if (content != local_content) {
|
if (content && content != local_content) {
|
||||||
// 创建 eps 描述文件
|
// 创建 eps 描述文件
|
||||||
fs.createWriteStream(getEpsPath("eps.d.ts"), {
|
fs.createWriteStream(getEpsPath("eps.d.ts"), {
|
||||||
flags: "w",
|
flags: "w",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cool-vue/vite-plugin",
|
"name": "@cool-vue/vite-plugin",
|
||||||
"version": "8.1.1",
|
"version": "8.1.2",
|
||||||
"description": "cool-admin、cool-uni builder",
|
"description": "cool-admin、cool-uni builder",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"main": "/dist/index.js",
|
"main": "/dist/index.js",
|
||||||
|
|||||||
@ -54,16 +54,25 @@ function findColumns(sources: string[], item: Eps.Entity) {
|
|||||||
|
|
||||||
// 格式化代码
|
// 格式化代码
|
||||||
async function formatCode(text: string) {
|
async function formatCode(text: string) {
|
||||||
return prettier.format(text, {
|
return prettier
|
||||||
parser: "typescript",
|
.format(text, {
|
||||||
useTabs: true,
|
parser: "typescript",
|
||||||
tabWidth: 4,
|
useTabs: true,
|
||||||
endOfLine: "lf",
|
tabWidth: 4,
|
||||||
semi: true,
|
endOfLine: "lf",
|
||||||
singleQuote: false,
|
semi: true,
|
||||||
printWidth: 100,
|
singleQuote: false,
|
||||||
trailingComma: "none",
|
printWidth: 100,
|
||||||
});
|
trailingComma: "none",
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
error(
|
||||||
|
`[cool-eps] Failed to format /build/cool/eps.d.ts. Please delete the file and try again`,
|
||||||
|
);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取数据
|
// 获取数据
|
||||||
@ -169,6 +178,11 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
return (name || "").replace(/[:,\s,\/,-]/g, "");
|
return (name || "").replace(/[:,\s,\/,-]/g, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 检查方法名,包含特殊字符则忽略
|
||||||
|
function checkName(name: string) {
|
||||||
|
return name && !["{", "}", ":"].some((e) => name.includes(e));
|
||||||
|
}
|
||||||
|
|
||||||
// 创建 Entity
|
// 创建 Entity
|
||||||
function createEntity() {
|
function createEntity() {
|
||||||
const ignore: string[] = [];
|
const ignore: string[] = [];
|
||||||
@ -176,7 +190,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
let t0 = "";
|
let t0 = "";
|
||||||
|
|
||||||
for (const item of list) {
|
for (const item of list) {
|
||||||
if (!item.name) continue;
|
if (!checkName(item.name)) continue;
|
||||||
|
|
||||||
let t = `interface ${formatName(item.name)} {`;
|
let t = `interface ${formatName(item.name)} {`;
|
||||||
|
|
||||||
@ -235,6 +249,9 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
for (const i in d) {
|
for (const i in d) {
|
||||||
const name = k + toCamel(firstUpperCase(formatName(i)));
|
const name = k + toCamel(firstUpperCase(formatName(i)));
|
||||||
|
|
||||||
|
// 检查方法名
|
||||||
|
if (!checkName(name)) continue;
|
||||||
|
|
||||||
if (d[i].namespace) {
|
if (d[i].namespace) {
|
||||||
// 查找配置
|
// 查找配置
|
||||||
const item = list.find((e) => (e.prefix || "") === `/${d[i].namespace}`);
|
const item = list.find((e) => (e.prefix || "") === `/${d[i].namespace}`);
|
||||||
@ -249,9 +266,10 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
|
|
||||||
item.api.forEach((a) => {
|
item.api.forEach((a) => {
|
||||||
// 方法名
|
// 方法名
|
||||||
const n = toCamel(
|
const n = toCamel(formatName(a.name || last(a.path.split("/"))!));
|
||||||
formatName(a.name || last(a.path.split("/")) || ""),
|
|
||||||
);
|
// 检查方法名
|
||||||
|
if (!checkName(n)) return;
|
||||||
|
|
||||||
if (n) {
|
if (n) {
|
||||||
// 参数类型
|
// 参数类型
|
||||||
@ -265,7 +283,8 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
q.push(`\n/** ${p.description} */\n`);
|
q.push(`\n/** ${p.description} */\n`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p.name.includes(":")) {
|
// 检查参数名
|
||||||
|
if (!checkName(p.name)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -407,7 +426,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
|
|||||||
const local_content = readFile(getEpsPath("eps.d.ts"));
|
const local_content = readFile(getEpsPath("eps.d.ts"));
|
||||||
|
|
||||||
// 是否需要更新
|
// 是否需要更新
|
||||||
if (content != local_content) {
|
if (content && content != local_content) {
|
||||||
// 创建 eps 描述文件
|
// 创建 eps 描述文件
|
||||||
createWriteStream(getEpsPath("eps.d.ts"), {
|
createWriteStream(getEpsPath("eps.d.ts"), {
|
||||||
flags: "w",
|
flags: "w",
|
||||||
|
|||||||
37
pnpm-lock.yaml
generated
37
pnpm-lock.yaml
generated
@ -9,8 +9,8 @@ importers:
|
|||||||
.:
|
.:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cool-vue/crud':
|
'@cool-vue/crud':
|
||||||
specifier: ^8.0.2
|
specifier: ^8.0.4
|
||||||
version: 8.0.2(typescript@5.5.4)
|
version: 8.0.4(typescript@5.5.4)
|
||||||
'@element-plus/icons-vue':
|
'@element-plus/icons-vue':
|
||||||
specifier: ^2.3.1
|
specifier: ^2.3.1
|
||||||
version: 2.3.1(vue@3.5.13(typescript@5.5.4))
|
version: 2.3.1(vue@3.5.13(typescript@5.5.4))
|
||||||
@ -82,8 +82,8 @@ importers:
|
|||||||
version: 0.18.5
|
version: 0.18.5
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@cool-vue/vite-plugin':
|
'@cool-vue/vite-plugin':
|
||||||
specifier: ^8.1.1
|
specifier: file:packages/vite-plugin
|
||||||
version: 8.1.1
|
version: file:packages/vite-plugin
|
||||||
'@intlify/unplugin-vue-i18n':
|
'@intlify/unplugin-vue-i18n':
|
||||||
specifier: ^6.0.3
|
specifier: ^6.0.3
|
||||||
version: 6.0.8(@vue/compiler-dom@3.5.13)(eslint@9.25.1(jiti@1.21.7))(rollup@4.40.0)(typescript@5.5.4)(vue-i18n@11.1.3(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))
|
version: 6.0.8(@vue/compiler-dom@3.5.13)(eslint@9.25.1(jiti@1.21.7))(rollup@4.40.0)(typescript@5.5.4)(vue-i18n@11.1.3(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))
|
||||||
@ -331,11 +331,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
|
resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@cool-vue/crud@8.0.2':
|
'@cool-vue/crud@8.0.4':
|
||||||
resolution: {integrity: sha512-7fXGfn1Li0n6vtHSj40mu2VuZV2L/T/HDllJXHMKq2ODo9EAttjcuTN/Z8b3KuOFHYpWp5iN+FqIzRNGEDxjUQ==}
|
resolution: {integrity: sha512-EBaqZQrJGqcUAsoHi7EL2OIJmE/+Mlofj8T8DIigkBLm6NQ7j8X1V7gpH1Q/yky9cw1NXUeSJrPXcvTlagdUdA==}
|
||||||
|
|
||||||
'@cool-vue/vite-plugin@8.1.1':
|
'@cool-vue/vite-plugin@file:packages/vite-plugin':
|
||||||
resolution: {integrity: sha512-s4F2NHUZ1Dc7KjEumzzbnOkKPw0Fdb2GwdWmgTpaxwBg9BTpiVA/N+92kqh8mlSmRJjn/tMMaEUInxQzbLQ0TQ==}
|
resolution: {directory: packages/vite-plugin, type: directory}
|
||||||
|
|
||||||
'@ctrl/tinycolor@3.6.1':
|
'@ctrl/tinycolor@3.6.1':
|
||||||
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
|
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
|
||||||
@ -675,36 +675,42 @@ packages:
|
|||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@parcel/watcher-linux-arm-musl@2.5.1':
|
'@parcel/watcher-linux-arm-musl@2.5.1':
|
||||||
resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
|
resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@parcel/watcher-linux-arm64-glibc@2.5.1':
|
'@parcel/watcher-linux-arm64-glibc@2.5.1':
|
||||||
resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
|
resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@parcel/watcher-linux-arm64-musl@2.5.1':
|
'@parcel/watcher-linux-arm64-musl@2.5.1':
|
||||||
resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
|
resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@parcel/watcher-linux-x64-glibc@2.5.1':
|
'@parcel/watcher-linux-x64-glibc@2.5.1':
|
||||||
resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
|
resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@parcel/watcher-linux-x64-musl@2.5.1':
|
'@parcel/watcher-linux-x64-musl@2.5.1':
|
||||||
resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
|
resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@parcel/watcher-win32-arm64@2.5.1':
|
'@parcel/watcher-win32-arm64@2.5.1':
|
||||||
resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
|
resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
|
||||||
@ -782,56 +788,67 @@ packages:
|
|||||||
resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
|
resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm-musleabihf@4.40.0':
|
'@rollup/rollup-linux-arm-musleabihf@4.40.0':
|
||||||
resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
|
resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
|
||||||
cpu: [arm]
|
cpu: [arm]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm64-gnu@4.40.0':
|
'@rollup/rollup-linux-arm64-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
|
resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-arm64-musl@4.40.0':
|
'@rollup/rollup-linux-arm64-musl@4.40.0':
|
||||||
resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
|
resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@rollup/rollup-linux-loongarch64-gnu@4.40.0':
|
'@rollup/rollup-linux-loongarch64-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
|
resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
|
||||||
cpu: [loong64]
|
cpu: [loong64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
|
'@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
|
resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
|
||||||
cpu: [ppc64]
|
cpu: [ppc64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-riscv64-gnu@4.40.0':
|
'@rollup/rollup-linux-riscv64-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
|
resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
|
||||||
cpu: [riscv64]
|
cpu: [riscv64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-riscv64-musl@4.40.0':
|
'@rollup/rollup-linux-riscv64-musl@4.40.0':
|
||||||
resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
|
resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
|
||||||
cpu: [riscv64]
|
cpu: [riscv64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@rollup/rollup-linux-s390x-gnu@4.40.0':
|
'@rollup/rollup-linux-s390x-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
|
resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
|
||||||
cpu: [s390x]
|
cpu: [s390x]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-x64-gnu@4.40.0':
|
'@rollup/rollup-linux-x64-gnu@4.40.0':
|
||||||
resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
|
resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [glibc]
|
||||||
|
|
||||||
'@rollup/rollup-linux-x64-musl@4.40.0':
|
'@rollup/rollup-linux-x64-musl@4.40.0':
|
||||||
resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
|
resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
libc: [musl]
|
||||||
|
|
||||||
'@rollup/rollup-win32-arm64-msvc@4.40.0':
|
'@rollup/rollup-win32-arm64-msvc@4.40.0':
|
||||||
resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
|
resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
|
||||||
@ -3063,7 +3080,7 @@ snapshots:
|
|||||||
'@babel/helper-string-parser': 7.25.9
|
'@babel/helper-string-parser': 7.25.9
|
||||||
'@babel/helper-validator-identifier': 7.25.9
|
'@babel/helper-validator-identifier': 7.25.9
|
||||||
|
|
||||||
'@cool-vue/crud@8.0.2(typescript@5.5.4)':
|
'@cool-vue/crud@8.0.4(typescript@5.5.4)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/runtime-core': 3.5.13
|
'@vue/runtime-core': 3.5.13
|
||||||
element-plus: 2.9.8(vue@3.5.13(typescript@5.5.4))
|
element-plus: 2.9.8(vue@3.5.13(typescript@5.5.4))
|
||||||
@ -3073,7 +3090,7 @@ snapshots:
|
|||||||
- '@vue/composition-api'
|
- '@vue/composition-api'
|
||||||
- typescript
|
- typescript
|
||||||
|
|
||||||
'@cool-vue/vite-plugin@8.1.1':
|
'@cool-vue/vite-plugin@file:packages/vite-plugin':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/compiler-sfc': 3.5.13
|
'@vue/compiler-sfc': 3.5.13
|
||||||
axios: 1.8.4
|
axios: 1.8.4
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user