cabloy 5.1.12 → 5.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/package.json +5 -1
- package/scripts/init.ts +17 -0
- package/scripts/upgrade.ts +240 -0
- package/vona/env/.env +1 -1
- package/vona/pnpm-lock.yaml +148 -148
- package/zova/env/.env +1 -1
- package/zova/packages-cli/cli/package.json +2 -2
- package/zova/packages-cli/cli-set-front/package.json +1 -1
- package/zova/pnpm-lock.yaml +6 -6
- package/zova/tsconfig.base.esm.json +1 -1
- package/vona/nginx.conf +0 -52
- package/zova/env/.env.ssr.testSecond +0 -5
- package/zova/env/.env.ssr.testSecond.production +0 -7
- /package/zova/packages-cli/cli-set-front/cli/templates/rest/{modules.ts → modules.ts_} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.1.14
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Require project name in create-cabloy and set APP_NAME during init
|
|
8
|
+
|
|
9
|
+
### Improvements
|
|
10
|
+
|
|
11
|
+
- Update dependencies
|
|
12
|
+
|
|
13
|
+
## 5.1.13
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- Add upgrade script and remove testSecond flavor env files
|
|
18
|
+
|
|
19
|
+
### Improvements
|
|
20
|
+
|
|
21
|
+
- Switch tsconfig base from front to api and update dependencies
|
|
22
|
+
|
|
3
23
|
## 5.1.12
|
|
4
24
|
|
|
5
25
|
## 5.1.11
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cabloy",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.14",
|
|
4
4
|
"description": "A Node.js fullstack framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cabloy",
|
|
@@ -21,10 +21,14 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"init": "pnpm install --no-frozen-lockfile && node scripts/init.ts",
|
|
24
|
+
"upgrade": "node scripts/upgrade.ts",
|
|
25
|
+
"upgrade:dry-run": "node scripts/upgrade.ts --dry-run",
|
|
26
|
+
"dev": "cd vona && npm run dev",
|
|
24
27
|
"build": "pnpm --dir zova run build:ssr:cabloyBasicBatch && pnpm --dir vona run build",
|
|
25
28
|
"build:docker": "pnpm --dir zova run build:ssr:cabloyBasicBatch && pnpm --dir vona run build:docker",
|
|
26
29
|
"start": "cd vona && npm run start",
|
|
27
30
|
"start:one": "cd vona && npm run start:one",
|
|
31
|
+
"test": "cd vona && npm run test",
|
|
28
32
|
"format": "oxfmt --check",
|
|
29
33
|
"format:fix": "oxfmt --write",
|
|
30
34
|
"lint": "oxlint",
|
package/scripts/init.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { execSync } from 'node:child_process';
|
|
2
2
|
import { randomBytes, randomInt, randomUUID } from 'node:crypto';
|
|
3
3
|
import { copyFileSync, cpSync, existsSync, readFileSync, writeFileSync } from 'node:fs';
|
|
4
|
+
import { basename } from 'node:path';
|
|
4
5
|
import { dirname, resolve } from 'node:path';
|
|
5
6
|
import { fileURLToPath } from 'node:url';
|
|
6
7
|
|
|
@@ -27,6 +28,21 @@ function exec(cmd: string): void {
|
|
|
27
28
|
execSync(cmd, { stdio: 'inherit', cwd: ROOT_DIR });
|
|
28
29
|
}
|
|
29
30
|
|
|
31
|
+
// --- Step 0: Set APP_NAME in .env files ---
|
|
32
|
+
|
|
33
|
+
function setAppName(): void {
|
|
34
|
+
const projectName = basename(ROOT_DIR);
|
|
35
|
+
const envFiles = [resolve(ROOT_DIR, 'vona/env/.env'), resolve(ROOT_DIR, 'zova/env/.env')];
|
|
36
|
+
for (const filePath of envFiles) {
|
|
37
|
+
if (!existsSync(filePath)) continue;
|
|
38
|
+
let content = readFileSync(filePath, 'utf-8');
|
|
39
|
+
content = content.replace(/^APP_NAME.*/m, `APP_NAME = ${projectName}`);
|
|
40
|
+
writeFileSync(filePath, content);
|
|
41
|
+
// eslint-disable-next-line
|
|
42
|
+
console.log(`[init] Set APP_NAME = ${projectName} in ${filePath}`);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
30
46
|
// --- Step A: Generate vona/env/.env.prod.local ---
|
|
31
47
|
|
|
32
48
|
function generateEnvProdLocal(): void {
|
|
@@ -155,6 +171,7 @@ function cleanupWorkspaceYaml(): void {
|
|
|
155
171
|
|
|
156
172
|
// --- Main ---
|
|
157
173
|
|
|
174
|
+
setAppName();
|
|
158
175
|
generateEnvProdLocal();
|
|
159
176
|
generateEnvProdDockerLocal();
|
|
160
177
|
cleanupWorkspaceYaml();
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import { execSync } from 'node:child_process';
|
|
2
|
+
import { createWriteStream } from 'node:fs';
|
|
3
|
+
import { cpSync, existsSync, mkdirSync, rmSync, unlinkSync } from 'node:fs';
|
|
4
|
+
import { tmpdir } from 'node:os';
|
|
5
|
+
import { dirname, join, resolve } from 'node:path';
|
|
6
|
+
import { pipeline } from 'node:stream/promises';
|
|
7
|
+
import { fileURLToPath } from 'node:url';
|
|
8
|
+
|
|
9
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
10
|
+
const ROOT_DIR = resolve(__dirname, '..');
|
|
11
|
+
const NPM_REGISTRY = 'https://registry.npmjs.org';
|
|
12
|
+
const PACKAGE_NAME = 'cabloy';
|
|
13
|
+
const TEMP_DIR = resolve(ROOT_DIR, 'node_modules/.cabloy-upgrade');
|
|
14
|
+
|
|
15
|
+
// --- Whitelist ---
|
|
16
|
+
|
|
17
|
+
const WHITELIST_DIRS: string[] = [
|
|
18
|
+
// root
|
|
19
|
+
'scripts',
|
|
20
|
+
'.husky',
|
|
21
|
+
// vona
|
|
22
|
+
'vona/packages-vona',
|
|
23
|
+
'vona/packages-cli',
|
|
24
|
+
'vona/packages-utils',
|
|
25
|
+
'vona/src/suite-vendor',
|
|
26
|
+
'vona/src/module-vendor',
|
|
27
|
+
'vona/scripts',
|
|
28
|
+
'vona/docker-compose-original',
|
|
29
|
+
// zova
|
|
30
|
+
'zova/packages-zova',
|
|
31
|
+
'zova/packages-cli',
|
|
32
|
+
'zova/packages-utils',
|
|
33
|
+
'zova/src/suite-vendor',
|
|
34
|
+
'zova/src/module-vendor',
|
|
35
|
+
'zova/src/boot',
|
|
36
|
+
'zova/src-ssr',
|
|
37
|
+
'zova/scripts',
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
const WHITELIST_FILES: string[] = [
|
|
41
|
+
// root
|
|
42
|
+
'package.json',
|
|
43
|
+
'tsconfig.json',
|
|
44
|
+
'tsconfig.base.json',
|
|
45
|
+
'tsconfig.base.esm.json',
|
|
46
|
+
'oxfmt.config.ts',
|
|
47
|
+
'oxlint.config.ts',
|
|
48
|
+
'lint-staged.config.mjs',
|
|
49
|
+
'LICENSE',
|
|
50
|
+
// vona
|
|
51
|
+
'vona/package.original.json',
|
|
52
|
+
'vona/pnpm-workspace.yaml',
|
|
53
|
+
'vona/lerna.json',
|
|
54
|
+
'vona/tsconfig.json',
|
|
55
|
+
'vona/tsconfig.base.json',
|
|
56
|
+
'vona/tsconfig.base.esm.json',
|
|
57
|
+
'vona/oxfmt.config.ts',
|
|
58
|
+
'vona/oxlint.config.ts',
|
|
59
|
+
'vona/nginx.conf',
|
|
60
|
+
'vona/docker-compose.original.yml',
|
|
61
|
+
'vona/docker-compose-dockerfile-app',
|
|
62
|
+
'vona/codecov.yml',
|
|
63
|
+
// zova
|
|
64
|
+
'zova/package.original.json',
|
|
65
|
+
'zova/pnpm-workspace.yaml',
|
|
66
|
+
'zova/lerna.json',
|
|
67
|
+
'zova/tsconfig.json',
|
|
68
|
+
'zova/tsconfig.base.json',
|
|
69
|
+
'zova/tsconfig.base.esm.json',
|
|
70
|
+
'zova/tsconfig.rest.json',
|
|
71
|
+
'zova/tsconfig.vue-tsc.json',
|
|
72
|
+
'zova/oxfmt.config.ts',
|
|
73
|
+
'zova/oxlint.config.ts',
|
|
74
|
+
'zova/quasar.config.ts',
|
|
75
|
+
'zova/quasar.extensions.json',
|
|
76
|
+
'zova/postcss.config.js',
|
|
77
|
+
'zova/index.html',
|
|
78
|
+
'zova/openapi.config.ts',
|
|
79
|
+
];
|
|
80
|
+
|
|
81
|
+
// --- Helpers ---
|
|
82
|
+
|
|
83
|
+
// oxlint-disable no-console
|
|
84
|
+
const log = console.log; // eslint-disable-line no-console
|
|
85
|
+
|
|
86
|
+
function exec(cmd: string): void {
|
|
87
|
+
execSync(cmd, { stdio: 'inherit', cwd: ROOT_DIR });
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// --- Step 1: Pre-flight ---
|
|
91
|
+
|
|
92
|
+
function preflight(): void {
|
|
93
|
+
const markers = ['__CABLOY_BASIC__', '__CABLOY_START__'];
|
|
94
|
+
const found = markers.find(m => existsSync(resolve(ROOT_DIR, m)));
|
|
95
|
+
if (!found) {
|
|
96
|
+
console.error(
|
|
97
|
+
'Error: Not a cabloy project (no __CABLOY_BASIC__ or __CABLOY_START__ marker found)',
|
|
98
|
+
);
|
|
99
|
+
process.exit(1);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// --- Step 2: Download & extract ---
|
|
104
|
+
|
|
105
|
+
async function fetchLatestTarballUrl(): Promise<string> {
|
|
106
|
+
const url = `${NPM_REGISTRY}/${PACKAGE_NAME}/latest`;
|
|
107
|
+
const res = await fetch(url);
|
|
108
|
+
if (!res.ok) {
|
|
109
|
+
throw new Error(`Failed to fetch package info: ${res.status} ${res.statusText}`);
|
|
110
|
+
}
|
|
111
|
+
const data = (await res.json()) as { dist: { tarball: string } };
|
|
112
|
+
return data.dist.tarball;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
async function downloadTarball(tarballUrl: string): Promise<string> {
|
|
116
|
+
const tmpFile = join(tmpdir(), `cabloy-upgrade-${Date.now()}.tgz`);
|
|
117
|
+
const res = await fetch(tarballUrl);
|
|
118
|
+
if (!res.ok) {
|
|
119
|
+
throw new Error(`Failed to download tarball: ${res.status} ${res.statusText}`);
|
|
120
|
+
}
|
|
121
|
+
if (!res.body) {
|
|
122
|
+
throw new Error('Failed to download tarball: empty response body');
|
|
123
|
+
}
|
|
124
|
+
mkdirSync(dirname(tmpFile), { recursive: true });
|
|
125
|
+
const fileStream = createWriteStream(tmpFile);
|
|
126
|
+
await pipeline(res.body, fileStream);
|
|
127
|
+
return tmpFile;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
async function extractTarball(tarballPath: string, targetDir: string): Promise<void> {
|
|
131
|
+
mkdirSync(targetDir, { recursive: true });
|
|
132
|
+
const exitCode = execSync(`tar --strip-components=1 -xzf "${tarballPath}" -C "${targetDir}"`, {
|
|
133
|
+
stdio: 'pipe',
|
|
134
|
+
});
|
|
135
|
+
// @ts-ignore
|
|
136
|
+
if (exitCode !== 0) {
|
|
137
|
+
throw new Error('Failed to extract tarball');
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
async function downloadAndExtract(): Promise<void> {
|
|
142
|
+
const tarballUrl = await fetchLatestTarballUrl();
|
|
143
|
+
const tarballPath = await downloadTarball(tarballUrl);
|
|
144
|
+
try {
|
|
145
|
+
await extractTarball(tarballPath, TEMP_DIR);
|
|
146
|
+
} finally {
|
|
147
|
+
try {
|
|
148
|
+
unlinkSync(tarballPath);
|
|
149
|
+
} catch {}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// --- Step 3: Selective overwrite ---
|
|
154
|
+
|
|
155
|
+
function selectiveOverwrite(dryRun?: boolean): void {
|
|
156
|
+
// Overwrite directories
|
|
157
|
+
for (const dir of WHITELIST_DIRS) {
|
|
158
|
+
const src = resolve(TEMP_DIR, dir);
|
|
159
|
+
const dest = resolve(ROOT_DIR, dir);
|
|
160
|
+
if (!existsSync(src)) continue;
|
|
161
|
+
if (dryRun) {
|
|
162
|
+
log(` [dry-run] Overwrite directory: ${dir}`);
|
|
163
|
+
continue;
|
|
164
|
+
}
|
|
165
|
+
if (existsSync(dest)) {
|
|
166
|
+
rmSync(dest, { recursive: true, force: true });
|
|
167
|
+
}
|
|
168
|
+
cpSync(src, dest, { recursive: true, filter: src => !src.includes('.DS_Store') });
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Overwrite files
|
|
172
|
+
for (const file of WHITELIST_FILES) {
|
|
173
|
+
const src = resolve(TEMP_DIR, file);
|
|
174
|
+
const dest = resolve(ROOT_DIR, file);
|
|
175
|
+
if (!existsSync(src)) continue;
|
|
176
|
+
if (dryRun) {
|
|
177
|
+
log(` [dry-run] Overwrite file: ${file}`);
|
|
178
|
+
continue;
|
|
179
|
+
}
|
|
180
|
+
cpSync(src, dest);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// --- Step 4: Run init ---
|
|
185
|
+
|
|
186
|
+
function runInit(dryRun?: boolean): void {
|
|
187
|
+
if (dryRun) {
|
|
188
|
+
log(' [dry-run] Run: npm run init');
|
|
189
|
+
return;
|
|
190
|
+
}
|
|
191
|
+
exec('npm run init');
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// --- Step 5: Cleanup ---
|
|
195
|
+
|
|
196
|
+
function cleanup(dryRun?: boolean): void {
|
|
197
|
+
if (dryRun) {
|
|
198
|
+
log(' [dry-run] Remove temp dir: node_modules/.cabloy-upgrade/');
|
|
199
|
+
return;
|
|
200
|
+
}
|
|
201
|
+
if (existsSync(TEMP_DIR)) {
|
|
202
|
+
rmSync(TEMP_DIR, { recursive: true, force: true });
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// --- Main ---
|
|
207
|
+
|
|
208
|
+
async function main(): Promise<void> {
|
|
209
|
+
const dryRun = process.argv.includes('--dry-run');
|
|
210
|
+
|
|
211
|
+
log('Cabloy Upgrade\n');
|
|
212
|
+
|
|
213
|
+
// 1. Pre-flight
|
|
214
|
+
preflight();
|
|
215
|
+
|
|
216
|
+
// 2. Download & extract
|
|
217
|
+
log('Downloading latest cabloy from npm registry...');
|
|
218
|
+
await downloadAndExtract();
|
|
219
|
+
log('Downloaded and extracted successfully!\n');
|
|
220
|
+
|
|
221
|
+
// 3. Selective overwrite
|
|
222
|
+
log('Overwriting framework-owned files...');
|
|
223
|
+
selectiveOverwrite(dryRun);
|
|
224
|
+
log('');
|
|
225
|
+
|
|
226
|
+
// 4. Run init
|
|
227
|
+
log('Running npm run init...');
|
|
228
|
+
runInit(dryRun);
|
|
229
|
+
log('');
|
|
230
|
+
|
|
231
|
+
// 5. Cleanup
|
|
232
|
+
cleanup(dryRun);
|
|
233
|
+
|
|
234
|
+
log('Upgrade complete!');
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
main().catch(err => {
|
|
238
|
+
console.error(`\nUpgrade failed: ${err.message}`);
|
|
239
|
+
process.exit(1);
|
|
240
|
+
});
|
package/vona/env/.env
CHANGED
package/vona/pnpm-lock.yaml
CHANGED
|
@@ -2657,8 +2657,8 @@ packages:
|
|
|
2657
2657
|
'@cabloy/logger@1.1.13':
|
|
2658
2658
|
resolution: {integrity: sha512-/cuTFoIWptm7SFSaSZ9GGcgVEm27G7Va/qTXROzBPcyOw0KDx4yMqcYPOXOcEjRI4ZnT1PtjeM0KHNp7vAnd/A==}
|
|
2659
2659
|
|
|
2660
|
-
'@cabloy/logger@1.1.
|
|
2661
|
-
resolution: {integrity: sha512-
|
|
2660
|
+
'@cabloy/logger@1.1.15':
|
|
2661
|
+
resolution: {integrity: sha512-3PqVwq84iTq2WdEepHgl2zI50ccsnWopWcQt/PK7zS8A83pj9wdSNqeL+x/qsu4YnpFBVdX6m2+z1oyEPzWg2w==}
|
|
2662
2662
|
|
|
2663
2663
|
'@cabloy/module-info@2.0.0':
|
|
2664
2664
|
resolution: {integrity: sha512-ArN0/Ei4LH2LklWB2fy4+DVvli56A0m4mZPnKnQYoXEfkMtXChxbNDm6DZScY57lfTSyx7ZfGTgNVEbxF6VwYg==}
|
|
@@ -2702,8 +2702,8 @@ packages:
|
|
|
2702
2702
|
'@cabloy/word-utils@2.1.12':
|
|
2703
2703
|
resolution: {integrity: sha512-rU49pWMA8K6N4L98deSWNIbl25ECH5CPyrx4B28noJ4fOnyOMU71ogbhn2Mt3oLvZ8DehvWShzo6y50/1CGPQw==}
|
|
2704
2704
|
|
|
2705
|
-
'@cabloy/word-utils@2.1.
|
|
2706
|
-
resolution: {integrity: sha512-
|
|
2705
|
+
'@cabloy/word-utils@2.1.14':
|
|
2706
|
+
resolution: {integrity: sha512-ZS6ox9WimK8jZ8vaiiZAI1jLWgr5lRpeLRdbkh6+MR70ktf6hdyKx+Ny0On4F+CTP+rzYioqNwlWL1NmFKZ3eg==}
|
|
2707
2707
|
|
|
2708
2708
|
'@cabloy/word-utils@2.1.9':
|
|
2709
2709
|
resolution: {integrity: sha512-IH0QGvx9p1+zOC+AkKhKULatkRJO5n5iuMfwSXLZyc9T2u/w6pbPtj/dO/6LDAPinUvyaisHHehTqcnkLRUNTw==}
|
|
@@ -7336,8 +7336,8 @@ packages:
|
|
|
7336
7336
|
mutate-on-copy@1.1.11:
|
|
7337
7337
|
resolution: {integrity: sha512-fKbp1bu1euQJjGfIfH/FZhoxSV/eYxj4I4yLGs7lcIN92XOftuLXqvtlLAZFZpQNfKYYHi4kuepnTO483eyQTQ==}
|
|
7338
7338
|
|
|
7339
|
-
mutate-on-copy@1.1.
|
|
7340
|
-
resolution: {integrity: sha512-
|
|
7339
|
+
mutate-on-copy@1.1.13:
|
|
7340
|
+
resolution: {integrity: sha512-0CiKZahzTq/V7vhHtXZu1tqcjmJHzQYfQ0CaqGbESdaFBzlqnnKomTJR1QMh2MdKt/wA0+J3IFe66/+ZV6Kn7w==}
|
|
7341
7341
|
|
|
7342
7342
|
mutate-on-copy@1.1.8:
|
|
7343
7343
|
resolution: {integrity: sha512-GyAX4aaU+82WHqzcZKETAqZmLsU4PHuLVm/qqRfGe7Nb8+yjzcFNJiwESBuChkGYWzSrycNsQUK94clhidnVsA==}
|
|
@@ -9286,164 +9286,164 @@ packages:
|
|
|
9286
9286
|
zova-core@5.1.40:
|
|
9287
9287
|
resolution: {integrity: sha512-lbYuYMMwz+LYJFuoQQDkSG2as7uqggxML+gmt37GEymELyqp6FX3OtunH7BS072tYo1X56FZm8C99LlqF9aF5Q==}
|
|
9288
9288
|
|
|
9289
|
-
zova-core@5.1.
|
|
9290
|
-
resolution: {integrity: sha512-
|
|
9289
|
+
zova-core@5.1.42:
|
|
9290
|
+
resolution: {integrity: sha512-RiHr1ukM1HoFOivZmS7gRwwQTqnfrqWdGVl/+Ox+r5LlLhSP5ZR6V12QaFlLogVZOITOGtd7g5JdyYyoKpystg==}
|
|
9291
9291
|
|
|
9292
9292
|
zova-jsx@1.1.46:
|
|
9293
9293
|
resolution: {integrity: sha512-I4DVFO99HSu58feG4mSoDm331SVG1zLsg6oDYZocKu1Etfv5L2xPyrhNZXB1+VlfLyaG1CEfNSF/7V28PoJYfw==}
|
|
9294
9294
|
|
|
9295
|
-
zova-jsx@1.1.
|
|
9296
|
-
resolution: {integrity: sha512-
|
|
9295
|
+
zova-jsx@1.1.48:
|
|
9296
|
+
resolution: {integrity: sha512-tDuzWb0iR23ShlPfRxfRmCX/mH+2nmtTiXVLO54dBcUbXgeKnEOkC6PhcyoN20DWaU8sQkDO8NWKpX9K/Qwgug==}
|
|
9297
9297
|
|
|
9298
9298
|
zova-module-a-api@5.1.13:
|
|
9299
9299
|
resolution: {integrity: sha512-FN/p2yn6gzWZFwP7cnklavQKK4YnyIUdgdfiMF2EP3kCThwqzm2V74a9y1vH60FJAIduLwKPzLYbrTXtJUP59Q==}
|
|
9300
9300
|
|
|
9301
|
-
zova-module-a-api@5.1.
|
|
9302
|
-
resolution: {integrity: sha512-
|
|
9301
|
+
zova-module-a-api@5.1.15:
|
|
9302
|
+
resolution: {integrity: sha512-eFgC1VVH7hUsOOWfpVg7IkV+yetWesOcSCW5ud7dddBnlr09Ip+/FmVrfpBU/qRVNjQB7maMElzmQpCjMlewIQ==}
|
|
9303
9303
|
|
|
9304
9304
|
zova-module-a-app@5.1.16:
|
|
9305
9305
|
resolution: {integrity: sha512-7wNXEopcFCfpeu8ie5iTuzx21wnJupUZAwS8XyTblX6fC2KCddjW7/Kyu6UmrUe+gNUOy3nR6JVi8FAZB6XX2g==}
|
|
9306
9306
|
|
|
9307
|
-
zova-module-a-app@5.1.
|
|
9308
|
-
resolution: {integrity: sha512-
|
|
9307
|
+
zova-module-a-app@5.1.18:
|
|
9308
|
+
resolution: {integrity: sha512-WVD+bjV68pFG4CHf5LKvjeN6jxCm+C3maSbHXZEJVhxt5AuQecAatfV99tDBAJ8AHvnswMbmkVXbBxBXHGPRHA==}
|
|
9309
9309
|
|
|
9310
9310
|
zova-module-a-bean@5.1.22:
|
|
9311
9311
|
resolution: {integrity: sha512-pZt5jbKJYXv+xqI4H6DKrN2u+YjzOmqBScCcP5+oisA2gO5b1JXT12PjF9zxFH+n2YRKtQSJvy9y+wYok1KrmA==}
|
|
9312
9312
|
|
|
9313
|
-
zova-module-a-bean@5.1.
|
|
9314
|
-
resolution: {integrity: sha512-
|
|
9313
|
+
zova-module-a-bean@5.1.24:
|
|
9314
|
+
resolution: {integrity: sha512-d/hbFJBfZwY61Xf696CD4sterhRMd80LOHLKiIqJ1CS6tExGHNUlWXRTvTg3xMbcAysXYyZZ6Qk4RCnAPwxEew==}
|
|
9315
9315
|
|
|
9316
9316
|
zova-module-a-behavior@5.1.17:
|
|
9317
9317
|
resolution: {integrity: sha512-aWIXDua11i8gdrKgOrz+IbXi9HkwkKFPkUCO83p0IIj4ZIRZWQenuFVfysljPITbRlCa4GdR2oY8izeoibAEyw==}
|
|
9318
9318
|
|
|
9319
|
-
zova-module-a-behavior@5.1.
|
|
9320
|
-
resolution: {integrity: sha512-
|
|
9319
|
+
zova-module-a-behavior@5.1.19:
|
|
9320
|
+
resolution: {integrity: sha512-oEQ/pjNEvmSp1NFk2tfrAwcKa80MXQ0X7o33583mTimCJff4AWCWcCk8h/6z638KIABPD45GtvihvJwYFqzCHA==}
|
|
9321
9321
|
|
|
9322
9322
|
zova-module-a-behaviors@5.1.13:
|
|
9323
9323
|
resolution: {integrity: sha512-BOwne+Od+Q2mKoAAgglpFdjaYt2c+8MsMA0rhe9kk+55BfZ3+iJZyeVJLP3N4sEiRu6aUf5QwBzmCabqxG3CUw==}
|
|
9324
9324
|
|
|
9325
|
-
zova-module-a-behaviors@5.1.
|
|
9326
|
-
resolution: {integrity: sha512-
|
|
9325
|
+
zova-module-a-behaviors@5.1.15:
|
|
9326
|
+
resolution: {integrity: sha512-qR7UG2lxcjX7Mfoj63VX4lxuDprUGdTu0u0GYLI02ci3LHAr0ix5Hf8rP6dIU7IMDqwccbDtnngX6MStWvzBVQ==}
|
|
9327
9327
|
|
|
9328
9328
|
zova-module-a-boundary@5.1.13:
|
|
9329
9329
|
resolution: {integrity: sha512-zlk6+27qoMLURJjNGyCmjE5vD84RKlLgxDr7BhPmlZCReRZl6Hq3cj9BH3ThZP2QZ6jS6gEDchT5n8mgQA3w5w==}
|
|
9330
9330
|
|
|
9331
|
-
zova-module-a-boundary@5.1.
|
|
9332
|
-
resolution: {integrity: sha512-
|
|
9331
|
+
zova-module-a-boundary@5.1.15:
|
|
9332
|
+
resolution: {integrity: sha512-BoV9ARu+wXIYAgsvTUSilMgWjqveeS97pVLhPXTh3Dlvv+WRxQ3Sf+2eTjYmuFPT7KXTuiRfcctFzuasC0LK9A==}
|
|
9333
9333
|
|
|
9334
9334
|
zova-module-a-command@5.1.24:
|
|
9335
9335
|
resolution: {integrity: sha512-2vJfooWYFCAOaeEWAtQB1Y6YJNHlYGUJFIjSB08TSgZ+UxhsDH8Ov9g88Trt7cSBlLPk0+h62CFvOLeKlrafAQ==}
|
|
9336
9336
|
|
|
9337
|
-
zova-module-a-command@5.1.
|
|
9338
|
-
resolution: {integrity: sha512-
|
|
9337
|
+
zova-module-a-command@5.1.26:
|
|
9338
|
+
resolution: {integrity: sha512-uJww5s+kXlUUmQXdhuM+mMs+ZfteH0sKqR05wnMelqnGfL2Q9tq7GmC+V9/U9S9ZFCHbFcN2YKTG9RWFxqzltQ==}
|
|
9339
9339
|
|
|
9340
9340
|
zova-module-a-fetch@5.1.15:
|
|
9341
9341
|
resolution: {integrity: sha512-TZDBUkXrIvGKo4bgZlb02uW5d9m3tkBDWOVgcbpo76Lc8T7w6885KvFkyBSoD7lEAubbHonfv4VLT6EIcSG6vQ==}
|
|
9342
9342
|
|
|
9343
|
-
zova-module-a-fetch@5.1.
|
|
9344
|
-
resolution: {integrity: sha512-
|
|
9343
|
+
zova-module-a-fetch@5.1.17:
|
|
9344
|
+
resolution: {integrity: sha512-9HmYNpA8m93BP32iUhWwxxYc9el4fx5Y/vNB4j+siA+O4h4A5YRYDoV8nxACLiItfBgzNLPa+6ZkwI5OLstFqA==}
|
|
9345
9345
|
|
|
9346
9346
|
zova-module-a-form@5.1.30:
|
|
9347
9347
|
resolution: {integrity: sha512-OG1O9pVvNhRNN7SfxgxtGliBfrnHqbRM6jl3Py3vcG69rR3/Gm9XX25K76O0p+gyB4RmfVzkdIht73o6/qGa0w==}
|
|
9348
9348
|
|
|
9349
|
-
zova-module-a-form@5.1.
|
|
9350
|
-
resolution: {integrity: sha512-
|
|
9349
|
+
zova-module-a-form@5.1.32:
|
|
9350
|
+
resolution: {integrity: sha512-X/o2WJ7gjwLiLsFCBxGhq9kMXAH18PLvn9WACPdnZLrAFlZwW+7du8ns7QaHnZCZKMqTVNA8IhNzR4y2yOZ6+Q==}
|
|
9351
9351
|
|
|
9352
9352
|
zova-module-a-icon@5.1.18:
|
|
9353
9353
|
resolution: {integrity: sha512-UdCUhN3Oud49fq9IhPack/Rr4Tf2G6LTa1/E6DUpKB2Aof0jWDCdvZt31xs3w5qg3M5pbsjABj9Rq4V46nRMYA==}
|
|
9354
9354
|
|
|
9355
|
-
zova-module-a-icon@5.1.
|
|
9356
|
-
resolution: {integrity: sha512-
|
|
9355
|
+
zova-module-a-icon@5.1.20:
|
|
9356
|
+
resolution: {integrity: sha512-roNmo1qc0F2Tg6brKLUtozZYlXtidAaDSt5AzUy0/OtPBxL1ysCFjKQKp48NQjjV5Y0r/bsmqjX7357fX8IoSQ==}
|
|
9357
9357
|
|
|
9358
9358
|
zova-module-a-interceptor@5.1.20:
|
|
9359
9359
|
resolution: {integrity: sha512-FHWcFsj1eaMT3AV4lYBnLd3LiSL1NKc6FnB+ta6Is/rf7hZk1+LXTZk2s+uSbhjVGxrmUWFiV0Pa6Jts/Z70nw==}
|
|
9360
9360
|
|
|
9361
|
-
zova-module-a-interceptor@5.1.
|
|
9362
|
-
resolution: {integrity: sha512-
|
|
9361
|
+
zova-module-a-interceptor@5.1.22:
|
|
9362
|
+
resolution: {integrity: sha512-hkZT/+PaRv06LgD30bofM5mDRYk80K2eL8c0WjvEqgj+Hy+TVEwew71vcWMGwk0q30UH9rwHs/tc7Ex02r7YEQ==}
|
|
9363
9363
|
|
|
9364
9364
|
zova-module-a-logger@5.1.14:
|
|
9365
9365
|
resolution: {integrity: sha512-Pg1HdKYO7rFGzm3RKvn2jDE/Ay8eB5J0zrA/NFv1L7fKGYvqQq8sfAFgU7T9q89qMUt8qFrNJMO1o56bL99ZPQ==}
|
|
9366
9366
|
|
|
9367
|
-
zova-module-a-logger@5.1.
|
|
9368
|
-
resolution: {integrity: sha512-
|
|
9367
|
+
zova-module-a-logger@5.1.16:
|
|
9368
|
+
resolution: {integrity: sha512-xwuYjyY8SjmiJ9Q4XjaV9M/6K4fq6GhFh803vRPmchN4UCNs3atufRXYbHM0m3FsmmByppPmBQ10ajMafjLl4Q==}
|
|
9369
9369
|
|
|
9370
9370
|
zova-module-a-meta@5.1.13:
|
|
9371
9371
|
resolution: {integrity: sha512-rvZIzPmAvwUAVsd4/WWtVEk8FXukNHZLmAft1+Fv4pLidT1TfuQ4u19RZV6MrUWzyxqTdzsa8uJxvK4QWx2KmA==}
|
|
9372
9372
|
|
|
9373
|
-
zova-module-a-meta@5.1.
|
|
9374
|
-
resolution: {integrity: sha512-
|
|
9373
|
+
zova-module-a-meta@5.1.15:
|
|
9374
|
+
resolution: {integrity: sha512-CIs5TYr33YgHxXDbkNsj7uUY1nq3moX9YmLtA9Kwd996P/bXu0eTxoFHHUgMWZhksAqSHccxFOH/JVSSOENYPg==}
|
|
9375
9375
|
|
|
9376
9376
|
zova-module-a-model@5.1.21:
|
|
9377
9377
|
resolution: {integrity: sha512-xEvJonpKxJpepfWo/xWE0Z/kuSEzHfKJNvaub6wimpIflKM6XO1dvwFrhY1WKvUsI7+2rhoafad8vgxdhAiuSg==}
|
|
9378
9378
|
|
|
9379
|
-
zova-module-a-model@5.1.
|
|
9380
|
-
resolution: {integrity: sha512-
|
|
9379
|
+
zova-module-a-model@5.1.23:
|
|
9380
|
+
resolution: {integrity: sha512-z7PCWvgIyTgs7eIIDuIgCEfmoFz/sIuZplYc5SQ0+FI1ACwROI04sS7yNFuCpcdFmA7myepO9l6hQdRiwATg8A==}
|
|
9381
9381
|
|
|
9382
9382
|
zova-module-a-openapi@5.1.27:
|
|
9383
9383
|
resolution: {integrity: sha512-YTBYhxjErZsD7RCpRaLUwCDEFo5tj3bmmEhuhGbED1GmwVfeKbvpWy3obkpWd6FMp0eDsNsBu2RleCtqmZFsJQ==}
|
|
9384
9384
|
|
|
9385
|
-
zova-module-a-openapi@5.1.
|
|
9386
|
-
resolution: {integrity: sha512-
|
|
9385
|
+
zova-module-a-openapi@5.1.29:
|
|
9386
|
+
resolution: {integrity: sha512-u2WcWRbyJUYHss2moWrXJBM3fffXmjmrvPcR/9RGvVrY9a+Lyk61tLldCoCkjELunFoSKHHo4vFt5v1IM+zTPw==}
|
|
9387
9387
|
|
|
9388
9388
|
zova-module-a-router@5.1.19:
|
|
9389
9389
|
resolution: {integrity: sha512-cOvvtLBabZMmwMS1jksFp/br+qBLZwqNjMGhqQmUpffS7QA1Pu7+Sj3NGD8hfJHVlrh4blO8tNst9OzfPPs1IA==}
|
|
9390
9390
|
|
|
9391
|
-
zova-module-a-router@5.1.
|
|
9392
|
-
resolution: {integrity: sha512-
|
|
9391
|
+
zova-module-a-router@5.1.21:
|
|
9392
|
+
resolution: {integrity: sha512-P7A3wJgryipVfTEX1NCTcE6fW2Y5TVHYaqZOTZejAH2MpxruwpoyfiVcgqAqQkGS4qPKwjMXBGjcPM7MimYEaA==}
|
|
9393
9393
|
|
|
9394
9394
|
zova-module-a-routerstack@5.1.18:
|
|
9395
9395
|
resolution: {integrity: sha512-mfjz2q5b8huNbiDH+WuoVAs2w+3iVSy+CLdIGXk6EbQJJYpO6lzsifW5Anos4fyG68Nh21nzon35Lgcb8PZ+wg==}
|
|
9396
9396
|
|
|
9397
|
-
zova-module-a-routerstack@5.1.
|
|
9398
|
-
resolution: {integrity: sha512-
|
|
9397
|
+
zova-module-a-routerstack@5.1.20:
|
|
9398
|
+
resolution: {integrity: sha512-KPOu+wflcFywuvI0IsvAu6rkqih72wNDk5UOY8JO7e+45nwxL5nk3T7WPllkGDEvxDCenh4ScDk+6SELrhDt9Q==}
|
|
9399
9399
|
|
|
9400
9400
|
zova-module-a-routertabs@5.1.22:
|
|
9401
9401
|
resolution: {integrity: sha512-1m/glwAA4IEgjEpJzM+6AUziYsy/cLBH03E6XfkbIOInRs8zUw7iu4XqitiRsaW8SSl1OdcO1WJdF3KIThELLQ==}
|
|
9402
9402
|
|
|
9403
|
-
zova-module-a-routertabs@5.1.
|
|
9404
|
-
resolution: {integrity: sha512-
|
|
9403
|
+
zova-module-a-routertabs@5.1.24:
|
|
9404
|
+
resolution: {integrity: sha512-QotwrnhWJn+iN2x/Q68g/fbr0A+QjWHY1G0eKWi9lYVJFAT38qBYciNPKoHZzsTnydhLUonybd/Au/je/TwNuA==}
|
|
9405
9405
|
|
|
9406
9406
|
zova-module-a-ssr@5.1.16:
|
|
9407
9407
|
resolution: {integrity: sha512-2VweSdImok5M/ssWarwR8qisd0PYvg54m/N/AxsVUmy8xjeED4dWn8YG/wi0ztvLKGr7a16cQDm+uYmZFD7NgQ==}
|
|
9408
9408
|
|
|
9409
|
-
zova-module-a-ssr@5.1.
|
|
9410
|
-
resolution: {integrity: sha512-
|
|
9409
|
+
zova-module-a-ssr@5.1.18:
|
|
9410
|
+
resolution: {integrity: sha512-QmLMzOiFH/DhO9NVGrTYneOaHTVXCzHoWAJnNoSmXarM18niWIC3BJ3/oajmk0IcmTLXSKR8HJ87MxZKTjiKew==}
|
|
9411
9411
|
|
|
9412
9412
|
zova-module-a-ssrhmr@5.1.14:
|
|
9413
9413
|
resolution: {integrity: sha512-WP+GyqwN4c3/XUt3QmR3hGzxf6uAbwne7gLXsHqmpV89nmH18LG0DO+/ytzMsq+8UUk7np2IOVxaRrUtJMgEiA==}
|
|
9414
9414
|
|
|
9415
|
-
zova-module-a-ssrhmr@5.1.
|
|
9416
|
-
resolution: {integrity: sha512-
|
|
9415
|
+
zova-module-a-ssrhmr@5.1.16:
|
|
9416
|
+
resolution: {integrity: sha512-HeJm3IUoWKa6x0SFkhBwYzVEtNGFZjPjmkL2TA+J05pfYTxbrMui+QR/wmPiYEub2ERm4aARSZuRe7zx1aCXkg==}
|
|
9417
9417
|
|
|
9418
9418
|
zova-module-a-ssrserver@5.1.13:
|
|
9419
9419
|
resolution: {integrity: sha512-6uoeXd45VUx5ttu0Yp+yauDo+9Ax79jmFEKOtJXRTMpfTT2WNXosa7NILykkudRppBAQ5MnEYc40PnB6rISLcg==}
|
|
9420
9420
|
|
|
9421
|
-
zova-module-a-ssrserver@5.1.
|
|
9422
|
-
resolution: {integrity: sha512-
|
|
9421
|
+
zova-module-a-ssrserver@5.1.15:
|
|
9422
|
+
resolution: {integrity: sha512-9KN4N5sWzUjzzZHv0oWI3cQemrzANzJHJnHyAWScjRQNGaMJBUl8onplASESSDDnz52g21NUfndOrczKPeFxrQ==}
|
|
9423
9423
|
|
|
9424
9424
|
zova-module-a-style@5.1.23:
|
|
9425
9425
|
resolution: {integrity: sha512-DQBadmK/CWeKXa5VntI++W/Tul0BHiU4seeErCGdDz5lXMymxVSBaxPz/hBATcB8NCjPEhvSALbu+hbzd7/+nQ==}
|
|
9426
9426
|
|
|
9427
|
-
zova-module-a-style@5.1.
|
|
9428
|
-
resolution: {integrity: sha512-
|
|
9427
|
+
zova-module-a-style@5.1.25:
|
|
9428
|
+
resolution: {integrity: sha512-jdi4GqQZ7JEV7jYpmwdLEg7cVNd6HDJoSaTNT1aKmxb7nRgcnsA8PoCyo48aaGeGW9yeVlCbBRHp2KnTEhBOPQ==}
|
|
9429
9429
|
|
|
9430
9430
|
zova-module-a-table@5.1.25:
|
|
9431
9431
|
resolution: {integrity: sha512-4zEOIrkfhdedKIQ01DMHyXVZrEfj4wEsVQPmz/cUg/7xKoyYzuzazu9x4SH4+W1dUfaQ0pb0qokRKIFpYfCUgA==}
|
|
9432
9432
|
|
|
9433
|
-
zova-module-a-table@5.1.
|
|
9434
|
-
resolution: {integrity: sha512-
|
|
9433
|
+
zova-module-a-table@5.1.27:
|
|
9434
|
+
resolution: {integrity: sha512-AvEBRtmvkyTNZOwNHXagu32HI0tZQgf9XIw0E7xZWkUPcmp1aFGX6P+9jKr2tcLSMWa4X7Y4SLDx8J9ums4LMA==}
|
|
9435
9435
|
|
|
9436
9436
|
zova-module-a-zod@5.1.19:
|
|
9437
9437
|
resolution: {integrity: sha512-pQWcBqsbbzWF5VP0nPlv3pK1kH3H49tm/GrK1pXI4LWiPqxyx04Mqr2o8jQwHlkMB+5Kbu2OvgZ/dsjqWE3u0g==}
|
|
9438
9438
|
|
|
9439
|
-
zova-module-a-zod@5.1.
|
|
9440
|
-
resolution: {integrity: sha512-
|
|
9439
|
+
zova-module-a-zod@5.1.23:
|
|
9440
|
+
resolution: {integrity: sha512-6ySRF5eTCOjRGiSCKvOV2OVarB71sifjg/igUK+t3CYjiUFNfi58LMgx45V2xmjPJAF2FkEQpDu9p+dX5qsDLA==}
|
|
9441
9441
|
|
|
9442
9442
|
zova-module-a-zova@5.1.51:
|
|
9443
9443
|
resolution: {integrity: sha512-Z+ySGwa17+isn0WVLGqPI9ZxyXueCV/quLsVnfG3c0uc1DF93ZIL/o2krCKmg2EDTMju4RnF3AIDJw1xCqzRfA==}
|
|
9444
9444
|
|
|
9445
|
-
zova-module-a-zova@5.1.
|
|
9446
|
-
resolution: {integrity: sha512-
|
|
9445
|
+
zova-module-a-zova@5.1.53:
|
|
9446
|
+
resolution: {integrity: sha512-l/dfxkPwH7/HtFh6j5K+CtYZNjs1clAKmyCBYW4jfeGFlMmpeaXWj9PQhSSm/6mrG3DU1Rca09kPR08ATc2yCg==}
|
|
9447
9447
|
|
|
9448
9448
|
zova-module-rest-resource@5.1.23:
|
|
9449
9449
|
resolution: {integrity: sha512-Vh+I03PL0XEyd9wKclLjEIm4/INhlnpQ//MjdPxmowRA7iTGHi02yPak10Eu1bP+HCLcwgulpZqKA6wEGU+ISg==}
|
|
@@ -9460,14 +9460,14 @@ packages:
|
|
|
9460
9460
|
zova-suite-a-zova@5.1.79:
|
|
9461
9461
|
resolution: {integrity: sha512-ghUC6lO8/755AWUy7NTvfnc+NpjU5Vt3JAflaZclVfORvxWSdrfwEgSWiRxhdf0Mh6+Yt63U4UaSrC5KfWr3Fg==}
|
|
9462
9462
|
|
|
9463
|
-
zova-suite-a-zova@5.1.
|
|
9464
|
-
resolution: {integrity: sha512-
|
|
9463
|
+
zova-suite-a-zova@5.1.82:
|
|
9464
|
+
resolution: {integrity: sha512-UT5eUwN07Fzwwv8U2w8MSf7W3araGY4G8wJEoFf0SPcacHEujXC6Wi0S6RSBJh20Mp5dpx0CTmwElxuZDOhamQ==}
|
|
9465
9465
|
|
|
9466
9466
|
zova@5.1.80:
|
|
9467
9467
|
resolution: {integrity: sha512-pdVMxstdPxPNeOqmrLFrDy1lob+Mp1z+iwST2nr15eI3cnarpfhgR0+8CVlfk8Z3bjt5nW/6QY6RFCOH2tI7dQ==}
|
|
9468
9468
|
|
|
9469
|
-
zova@5.1.
|
|
9470
|
-
resolution: {integrity: sha512-
|
|
9469
|
+
zova@5.1.83:
|
|
9470
|
+
resolution: {integrity: sha512-PxGK0WXKN3cC4Xupf8GULzDLWgU6H6tgaBUS1dyt8sZ1tv07hTRy5kVS1SJrVrxGuZxutP5h4D3ikFRvqILwyA==}
|
|
9471
9471
|
|
|
9472
9472
|
zwitch@1.0.5:
|
|
9473
9473
|
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
|
|
@@ -9884,7 +9884,7 @@ snapshots:
|
|
|
9884
9884
|
'@cabloy/localeutil': link:packages-utils/localeutil
|
|
9885
9885
|
fecha: 4.2.3
|
|
9886
9886
|
|
|
9887
|
-
'@cabloy/logger@1.1.
|
|
9887
|
+
'@cabloy/logger@1.1.15':
|
|
9888
9888
|
dependencies:
|
|
9889
9889
|
'@cabloy/localeutil': link:packages-utils/localeutil
|
|
9890
9890
|
fecha: 4.2.3
|
|
@@ -9956,7 +9956,7 @@ snapshots:
|
|
|
9956
9956
|
|
|
9957
9957
|
'@cabloy/word-utils@2.1.12': {}
|
|
9958
9958
|
|
|
9959
|
-
'@cabloy/word-utils@2.1.
|
|
9959
|
+
'@cabloy/word-utils@2.1.14': {}
|
|
9960
9960
|
|
|
9961
9961
|
'@cabloy/word-utils@2.1.9': {}
|
|
9962
9962
|
|
|
@@ -14983,7 +14983,7 @@ snapshots:
|
|
|
14983
14983
|
|
|
14984
14984
|
mutate-on-copy@1.1.11: {}
|
|
14985
14985
|
|
|
14986
|
-
mutate-on-copy@1.1.
|
|
14986
|
+
mutate-on-copy@1.1.13: {}
|
|
14987
14987
|
|
|
14988
14988
|
mutate-on-copy@1.1.8: {}
|
|
14989
14989
|
|
|
@@ -17311,13 +17311,13 @@ snapshots:
|
|
|
17311
17311
|
transitivePeerDependencies:
|
|
17312
17312
|
- typescript
|
|
17313
17313
|
|
|
17314
|
-
zova-core@5.1.
|
|
17314
|
+
zova-core@5.1.42(typescript@5.9.3):
|
|
17315
17315
|
dependencies:
|
|
17316
17316
|
'@cabloy/compose': link:packages-utils/compose
|
|
17317
17317
|
'@cabloy/extend': link:packages-utils/extend
|
|
17318
17318
|
'@cabloy/json5': link:packages-utils/json5
|
|
17319
17319
|
'@cabloy/localeutil': link:packages-utils/localeutil
|
|
17320
|
-
'@cabloy/logger': 1.1.
|
|
17320
|
+
'@cabloy/logger': 1.1.15
|
|
17321
17321
|
'@cabloy/module-info': 2.0.0
|
|
17322
17322
|
'@cabloy/utils': link:packages-utils/utils
|
|
17323
17323
|
'@cabloy/vue-compiler-sfc': 3.5.14
|
|
@@ -17326,7 +17326,7 @@ snapshots:
|
|
|
17326
17326
|
'@cabloy/vue-runtime-core': 3.5.53
|
|
17327
17327
|
'@cabloy/vue-runtime-dom': 3.5.13
|
|
17328
17328
|
'@cabloy/vue-server-renderer': 3.5.18(vue@3.5.34(typescript@5.9.3))
|
|
17329
|
-
'@cabloy/word-utils': 2.1.
|
|
17329
|
+
'@cabloy/word-utils': 2.1.14
|
|
17330
17330
|
'@cabloy/zod-errors-custom': link:packages-utils/zod-errors-custom
|
|
17331
17331
|
'@cabloy/zod-openapi': link:packages-utils/zod-openapi
|
|
17332
17332
|
'@cabloy/zod-query': link:packages-utils/zod-query
|
|
@@ -17351,48 +17351,48 @@ snapshots:
|
|
|
17351
17351
|
transitivePeerDependencies:
|
|
17352
17352
|
- typescript
|
|
17353
17353
|
|
|
17354
|
-
zova-jsx@1.1.
|
|
17354
|
+
zova-jsx@1.1.48(typescript@5.9.3):
|
|
17355
17355
|
dependencies:
|
|
17356
17356
|
'@cabloy/compose': link:packages-utils/compose
|
|
17357
17357
|
'@cabloy/utils': link:packages-utils/utils
|
|
17358
|
-
'@cabloy/word-utils': 2.1.
|
|
17358
|
+
'@cabloy/word-utils': 2.1.14
|
|
17359
17359
|
typestyle: 2.4.0
|
|
17360
17360
|
vue: 3.5.34(typescript@5.9.3)
|
|
17361
|
-
zova-core: 5.1.
|
|
17361
|
+
zova-core: 5.1.42(typescript@5.9.3)
|
|
17362
17362
|
transitivePeerDependencies:
|
|
17363
17363
|
- typescript
|
|
17364
17364
|
|
|
17365
17365
|
zova-module-a-api@5.1.13: {}
|
|
17366
17366
|
|
|
17367
|
-
zova-module-a-api@5.1.
|
|
17367
|
+
zova-module-a-api@5.1.15: {}
|
|
17368
17368
|
|
|
17369
17369
|
zova-module-a-app@5.1.16: {}
|
|
17370
17370
|
|
|
17371
|
-
zova-module-a-app@5.1.
|
|
17371
|
+
zova-module-a-app@5.1.18: {}
|
|
17372
17372
|
|
|
17373
17373
|
zova-module-a-bean@5.1.22:
|
|
17374
17374
|
dependencies:
|
|
17375
17375
|
globby: 14.1.0
|
|
17376
17376
|
|
|
17377
|
-
zova-module-a-bean@5.1.
|
|
17377
|
+
zova-module-a-bean@5.1.24:
|
|
17378
17378
|
dependencies:
|
|
17379
17379
|
globby: 14.1.0
|
|
17380
17380
|
|
|
17381
17381
|
zova-module-a-behavior@5.1.17: {}
|
|
17382
17382
|
|
|
17383
|
-
zova-module-a-behavior@5.1.
|
|
17383
|
+
zova-module-a-behavior@5.1.19: {}
|
|
17384
17384
|
|
|
17385
17385
|
zova-module-a-behaviors@5.1.13: {}
|
|
17386
17386
|
|
|
17387
|
-
zova-module-a-behaviors@5.1.
|
|
17387
|
+
zova-module-a-behaviors@5.1.15: {}
|
|
17388
17388
|
|
|
17389
17389
|
zova-module-a-boundary@5.1.13: {}
|
|
17390
17390
|
|
|
17391
|
-
zova-module-a-boundary@5.1.
|
|
17391
|
+
zova-module-a-boundary@5.1.15: {}
|
|
17392
17392
|
|
|
17393
17393
|
zova-module-a-command@5.1.24: {}
|
|
17394
17394
|
|
|
17395
|
-
zova-module-a-command@5.1.
|
|
17395
|
+
zova-module-a-command@5.1.26: {}
|
|
17396
17396
|
|
|
17397
17397
|
zova-module-a-fetch@5.1.15:
|
|
17398
17398
|
dependencies:
|
|
@@ -17401,7 +17401,7 @@ snapshots:
|
|
|
17401
17401
|
- debug
|
|
17402
17402
|
- supports-color
|
|
17403
17403
|
|
|
17404
|
-
zova-module-a-fetch@5.1.
|
|
17404
|
+
zova-module-a-fetch@5.1.17:
|
|
17405
17405
|
dependencies:
|
|
17406
17406
|
axios: 1.16.1
|
|
17407
17407
|
transitivePeerDependencies:
|
|
@@ -17415,7 +17415,7 @@ snapshots:
|
|
|
17415
17415
|
- '@vue/composition-api'
|
|
17416
17416
|
- vue
|
|
17417
17417
|
|
|
17418
|
-
zova-module-a-form@5.1.
|
|
17418
|
+
zova-module-a-form@5.1.32(vue@3.5.34(typescript@5.9.3)):
|
|
17419
17419
|
dependencies:
|
|
17420
17420
|
'@tanstack/vue-form': 1.32.1(vue@3.5.34(typescript@5.9.3))
|
|
17421
17421
|
transitivePeerDependencies:
|
|
@@ -17424,23 +17424,23 @@ snapshots:
|
|
|
17424
17424
|
|
|
17425
17425
|
zova-module-a-icon@5.1.18: {}
|
|
17426
17426
|
|
|
17427
|
-
zova-module-a-icon@5.1.
|
|
17427
|
+
zova-module-a-icon@5.1.20: {}
|
|
17428
17428
|
|
|
17429
17429
|
zova-module-a-interceptor@5.1.20: {}
|
|
17430
17430
|
|
|
17431
|
-
zova-module-a-interceptor@5.1.
|
|
17431
|
+
zova-module-a-interceptor@5.1.22: {}
|
|
17432
17432
|
|
|
17433
17433
|
zova-module-a-logger@5.1.14:
|
|
17434
17434
|
dependencies:
|
|
17435
17435
|
'@cabloy/logger': 1.1.13
|
|
17436
17436
|
|
|
17437
|
-
zova-module-a-logger@5.1.
|
|
17437
|
+
zova-module-a-logger@5.1.16:
|
|
17438
17438
|
dependencies:
|
|
17439
|
-
'@cabloy/logger': 1.1.
|
|
17439
|
+
'@cabloy/logger': 1.1.15
|
|
17440
17440
|
|
|
17441
17441
|
zova-module-a-meta@5.1.13: {}
|
|
17442
17442
|
|
|
17443
|
-
zova-module-a-meta@5.1.
|
|
17443
|
+
zova-module-a-meta@5.1.15: {}
|
|
17444
17444
|
|
|
17445
17445
|
zova-module-a-model@5.1.21(vue@3.5.34(typescript@5.9.3)):
|
|
17446
17446
|
dependencies:
|
|
@@ -17454,13 +17454,13 @@ snapshots:
|
|
|
17454
17454
|
- '@vue/composition-api'
|
|
17455
17455
|
- vue
|
|
17456
17456
|
|
|
17457
|
-
zova-module-a-model@5.1.
|
|
17457
|
+
zova-module-a-model@5.1.23(vue@3.5.34(typescript@5.9.3)):
|
|
17458
17458
|
dependencies:
|
|
17459
17459
|
'@tanstack/query-core': 5.100.14
|
|
17460
17460
|
'@tanstack/query-persist-client-core': 5.100.14
|
|
17461
17461
|
'@tanstack/vue-query': 5.100.14(vue@3.5.34(typescript@5.9.3))
|
|
17462
17462
|
localforage: 1.10.0
|
|
17463
|
-
mutate-on-copy: 1.1.
|
|
17463
|
+
mutate-on-copy: 1.1.13
|
|
17464
17464
|
table-identity: link:packages-utils/table-identity
|
|
17465
17465
|
transitivePeerDependencies:
|
|
17466
17466
|
- '@vue/composition-api'
|
|
@@ -17472,7 +17472,7 @@ snapshots:
|
|
|
17472
17472
|
openapi3-ts: 4.5.0
|
|
17473
17473
|
typestyle: 2.4.0
|
|
17474
17474
|
|
|
17475
|
-
zova-module-a-openapi@5.1.
|
|
17475
|
+
zova-module-a-openapi@5.1.29:
|
|
17476
17476
|
dependencies:
|
|
17477
17477
|
'@cabloy/json-schema-to-zod': 2.6.4
|
|
17478
17478
|
openapi3-ts: 4.5.0
|
|
@@ -17480,22 +17480,22 @@ snapshots:
|
|
|
17480
17480
|
|
|
17481
17481
|
zova-module-a-router@5.1.19: {}
|
|
17482
17482
|
|
|
17483
|
-
zova-module-a-router@5.1.
|
|
17483
|
+
zova-module-a-router@5.1.21: {}
|
|
17484
17484
|
|
|
17485
17485
|
zova-module-a-routerstack@5.1.18: {}
|
|
17486
17486
|
|
|
17487
|
-
zova-module-a-routerstack@5.1.
|
|
17487
|
+
zova-module-a-routerstack@5.1.20: {}
|
|
17488
17488
|
|
|
17489
17489
|
zova-module-a-routertabs@5.1.22: {}
|
|
17490
17490
|
|
|
17491
|
-
zova-module-a-routertabs@5.1.
|
|
17491
|
+
zova-module-a-routertabs@5.1.24: {}
|
|
17492
17492
|
|
|
17493
17493
|
zova-module-a-ssr@5.1.16:
|
|
17494
17494
|
dependencies:
|
|
17495
17495
|
devalue: 5.8.1
|
|
17496
17496
|
ms: 2.1.3
|
|
17497
17497
|
|
|
17498
|
-
zova-module-a-ssr@5.1.
|
|
17498
|
+
zova-module-a-ssr@5.1.18:
|
|
17499
17499
|
dependencies:
|
|
17500
17500
|
devalue: 5.8.1
|
|
17501
17501
|
ms: 2.1.3
|
|
@@ -17505,7 +17505,7 @@ snapshots:
|
|
|
17505
17505
|
'@cabloy/socket': link:packages-utils/socket
|
|
17506
17506
|
debounce: 3.0.0
|
|
17507
17507
|
|
|
17508
|
-
zova-module-a-ssrhmr@5.1.
|
|
17508
|
+
zova-module-a-ssrhmr@5.1.16:
|
|
17509
17509
|
dependencies:
|
|
17510
17510
|
'@cabloy/socket': link:packages-utils/socket
|
|
17511
17511
|
debounce: 3.0.0
|
|
@@ -17514,7 +17514,7 @@ snapshots:
|
|
|
17514
17514
|
dependencies:
|
|
17515
17515
|
ms: 2.1.3
|
|
17516
17516
|
|
|
17517
|
-
zova-module-a-ssrserver@5.1.
|
|
17517
|
+
zova-module-a-ssrserver@5.1.15:
|
|
17518
17518
|
dependencies:
|
|
17519
17519
|
ms: 2.1.3
|
|
17520
17520
|
|
|
@@ -17523,7 +17523,7 @@ snapshots:
|
|
|
17523
17523
|
csx: 10.0.2
|
|
17524
17524
|
typestyle: 2.4.0
|
|
17525
17525
|
|
|
17526
|
-
zova-module-a-style@5.1.
|
|
17526
|
+
zova-module-a-style@5.1.25:
|
|
17527
17527
|
dependencies:
|
|
17528
17528
|
csx: 10.0.2
|
|
17529
17529
|
typestyle: 2.4.0
|
|
@@ -17535,7 +17535,7 @@ snapshots:
|
|
|
17535
17535
|
transitivePeerDependencies:
|
|
17536
17536
|
- vue
|
|
17537
17537
|
|
|
17538
|
-
zova-module-a-table@5.1.
|
|
17538
|
+
zova-module-a-table@5.1.27(vue@3.5.34(typescript@5.9.3)):
|
|
17539
17539
|
dependencies:
|
|
17540
17540
|
'@tanstack/table-core': 8.21.3
|
|
17541
17541
|
'@tanstack/vue-table': 8.21.3(vue@3.5.34(typescript@5.9.3))
|
|
@@ -17549,7 +17549,7 @@ snapshots:
|
|
|
17549
17549
|
'@cabloy/zod-query': link:packages-utils/zod-query
|
|
17550
17550
|
zod: '@cabloy/zod@4.3.6'
|
|
17551
17551
|
|
|
17552
|
-
zova-module-a-zod@5.1.
|
|
17552
|
+
zova-module-a-zod@5.1.23:
|
|
17553
17553
|
dependencies:
|
|
17554
17554
|
'@cabloy/zod-errors-custom': link:packages-utils/zod-errors-custom
|
|
17555
17555
|
'@cabloy/zod-openapi': link:packages-utils/zod-openapi
|
|
@@ -17572,7 +17572,7 @@ snapshots:
|
|
|
17572
17572
|
- typescript
|
|
17573
17573
|
- vue
|
|
17574
17574
|
|
|
17575
|
-
zova-module-a-zova@5.1.
|
|
17575
|
+
zova-module-a-zova@5.1.53(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
|
|
17576
17576
|
dependencies:
|
|
17577
17577
|
'@cabloy/compose': link:packages-utils/compose
|
|
17578
17578
|
'@cabloy/deps': link:packages-utils/deps
|
|
@@ -17580,10 +17580,10 @@ snapshots:
|
|
|
17580
17580
|
'@cabloy/module-info': 2.0.0
|
|
17581
17581
|
'@cabloy/utils': link:packages-utils/utils
|
|
17582
17582
|
'@cabloy/vue-router': 4.4.16(vue@3.5.34(typescript@5.9.3))
|
|
17583
|
-
'@cabloy/word-utils': 2.1.
|
|
17583
|
+
'@cabloy/word-utils': 2.1.14
|
|
17584
17584
|
defu: 6.1.7
|
|
17585
17585
|
luxon: 3.7.2
|
|
17586
|
-
zova-jsx: 1.1.
|
|
17586
|
+
zova-jsx: 1.1.48(typescript@5.9.3)
|
|
17587
17587
|
transitivePeerDependencies:
|
|
17588
17588
|
- typescript
|
|
17589
17589
|
- vue
|
|
@@ -17601,22 +17601,22 @@ snapshots:
|
|
|
17601
17601
|
typestyle: 2.4.0
|
|
17602
17602
|
vue: 3.5.34(typescript@5.9.3)
|
|
17603
17603
|
zod: '@cabloy/zod@4.3.6'
|
|
17604
|
-
zova: 5.1.
|
|
17605
|
-
zova-jsx: 1.1.
|
|
17606
|
-
zova-module-a-api: 5.1.
|
|
17607
|
-
zova-module-a-bean: 5.1.
|
|
17608
|
-
zova-module-a-behavior: 5.1.
|
|
17609
|
-
zova-module-a-command: 5.1.
|
|
17610
|
-
zova-module-a-form: 5.1.
|
|
17611
|
-
zova-module-a-icon: 5.1.
|
|
17612
|
-
zova-module-a-interceptor: 5.1.
|
|
17613
|
-
zova-module-a-model: 5.1.
|
|
17614
|
-
zova-module-a-openapi: 5.1.
|
|
17615
|
-
zova-module-a-router: 5.1.
|
|
17616
|
-
zova-module-a-routertabs: 5.1.
|
|
17617
|
-
zova-module-a-ssr: 5.1.
|
|
17618
|
-
zova-module-a-style: 5.1.
|
|
17619
|
-
zova-module-a-table: 5.1.
|
|
17604
|
+
zova: 5.1.83(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
|
|
17605
|
+
zova-jsx: 1.1.48(typescript@5.9.3)
|
|
17606
|
+
zova-module-a-api: 5.1.15
|
|
17607
|
+
zova-module-a-bean: 5.1.24
|
|
17608
|
+
zova-module-a-behavior: 5.1.19
|
|
17609
|
+
zova-module-a-command: 5.1.26
|
|
17610
|
+
zova-module-a-form: 5.1.32(vue@3.5.34(typescript@5.9.3))
|
|
17611
|
+
zova-module-a-icon: 5.1.20
|
|
17612
|
+
zova-module-a-interceptor: 5.1.22
|
|
17613
|
+
zova-module-a-model: 5.1.23(vue@3.5.34(typescript@5.9.3))
|
|
17614
|
+
zova-module-a-openapi: 5.1.29
|
|
17615
|
+
zova-module-a-router: 5.1.21
|
|
17616
|
+
zova-module-a-routertabs: 5.1.24
|
|
17617
|
+
zova-module-a-ssr: 5.1.18
|
|
17618
|
+
zova-module-a-style: 5.1.25
|
|
17619
|
+
zova-module-a-table: 5.1.27(vue@3.5.34(typescript@5.9.3))
|
|
17620
17620
|
zova-module-rest-resource: 5.1.32
|
|
17621
17621
|
transitivePeerDependencies:
|
|
17622
17622
|
- '@vue/composition-api'
|
|
@@ -17690,33 +17690,33 @@ snapshots:
|
|
|
17690
17690
|
- typescript
|
|
17691
17691
|
- vue
|
|
17692
17692
|
|
|
17693
|
-
zova-suite-a-zova@5.1.
|
|
17694
|
-
dependencies:
|
|
17695
|
-
zova-module-a-api: 5.1.
|
|
17696
|
-
zova-module-a-app: 5.1.
|
|
17697
|
-
zova-module-a-bean: 5.1.
|
|
17698
|
-
zova-module-a-behavior: 5.1.
|
|
17699
|
-
zova-module-a-behaviors: 5.1.
|
|
17700
|
-
zova-module-a-boundary: 5.1.
|
|
17701
|
-
zova-module-a-command: 5.1.
|
|
17702
|
-
zova-module-a-fetch: 5.1.
|
|
17703
|
-
zova-module-a-form: 5.1.
|
|
17704
|
-
zova-module-a-icon: 5.1.
|
|
17705
|
-
zova-module-a-interceptor: 5.1.
|
|
17706
|
-
zova-module-a-logger: 5.1.
|
|
17707
|
-
zova-module-a-meta: 5.1.
|
|
17708
|
-
zova-module-a-model: 5.1.
|
|
17709
|
-
zova-module-a-openapi: 5.1.
|
|
17710
|
-
zova-module-a-router: 5.1.
|
|
17711
|
-
zova-module-a-routerstack: 5.1.
|
|
17712
|
-
zova-module-a-routertabs: 5.1.
|
|
17713
|
-
zova-module-a-ssr: 5.1.
|
|
17714
|
-
zova-module-a-ssrhmr: 5.1.
|
|
17715
|
-
zova-module-a-ssrserver: 5.1.
|
|
17716
|
-
zova-module-a-style: 5.1.
|
|
17717
|
-
zova-module-a-table: 5.1.
|
|
17718
|
-
zova-module-a-zod: 5.1.
|
|
17719
|
-
zova-module-a-zova: 5.1.
|
|
17693
|
+
zova-suite-a-zova@5.1.82(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
|
|
17694
|
+
dependencies:
|
|
17695
|
+
zova-module-a-api: 5.1.15
|
|
17696
|
+
zova-module-a-app: 5.1.18
|
|
17697
|
+
zova-module-a-bean: 5.1.24
|
|
17698
|
+
zova-module-a-behavior: 5.1.19
|
|
17699
|
+
zova-module-a-behaviors: 5.1.15
|
|
17700
|
+
zova-module-a-boundary: 5.1.15
|
|
17701
|
+
zova-module-a-command: 5.1.26
|
|
17702
|
+
zova-module-a-fetch: 5.1.17
|
|
17703
|
+
zova-module-a-form: 5.1.32(vue@3.5.34(typescript@5.9.3))
|
|
17704
|
+
zova-module-a-icon: 5.1.20
|
|
17705
|
+
zova-module-a-interceptor: 5.1.22
|
|
17706
|
+
zova-module-a-logger: 5.1.16
|
|
17707
|
+
zova-module-a-meta: 5.1.15
|
|
17708
|
+
zova-module-a-model: 5.1.23(vue@3.5.34(typescript@5.9.3))
|
|
17709
|
+
zova-module-a-openapi: 5.1.29
|
|
17710
|
+
zova-module-a-router: 5.1.21
|
|
17711
|
+
zova-module-a-routerstack: 5.1.20
|
|
17712
|
+
zova-module-a-routertabs: 5.1.24
|
|
17713
|
+
zova-module-a-ssr: 5.1.18
|
|
17714
|
+
zova-module-a-ssrhmr: 5.1.16
|
|
17715
|
+
zova-module-a-ssrserver: 5.1.15
|
|
17716
|
+
zova-module-a-style: 5.1.25
|
|
17717
|
+
zova-module-a-table: 5.1.27(vue@3.5.34(typescript@5.9.3))
|
|
17718
|
+
zova-module-a-zod: 5.1.23
|
|
17719
|
+
zova-module-a-zova: 5.1.53(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
|
|
17720
17720
|
transitivePeerDependencies:
|
|
17721
17721
|
- '@vue/composition-api'
|
|
17722
17722
|
- debug
|
|
@@ -17735,10 +17735,10 @@ snapshots:
|
|
|
17735
17735
|
- typescript
|
|
17736
17736
|
- vue
|
|
17737
17737
|
|
|
17738
|
-
zova@5.1.
|
|
17738
|
+
zova@5.1.83(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
|
|
17739
17739
|
dependencies:
|
|
17740
|
-
zova-core: 5.1.
|
|
17741
|
-
zova-suite-a-zova: 5.1.
|
|
17740
|
+
zova-core: 5.1.42(typescript@5.9.3)
|
|
17741
|
+
zova-suite-a-zova: 5.1.82(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
|
|
17742
17742
|
transitivePeerDependencies:
|
|
17743
17743
|
- '@vue/composition-api'
|
|
17744
17744
|
- debug
|
package/zova/env/.env
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.69",
|
|
4
4
|
"gitHead": "6f675a8cc46d596142c591c28a40cc4d82fcc6cc",
|
|
5
5
|
"description": "zova cli",
|
|
6
6
|
"keywords": [
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@cabloy/process-helper": "^3.0.0",
|
|
45
45
|
"fs-extra": "^11.3.5",
|
|
46
46
|
"semver": "^7.6.2",
|
|
47
|
-
"zova-cli-set-front": "^1.2.
|
|
47
|
+
"zova-cli-set-front": "^1.2.67"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"clean-package": "^2.2.0",
|
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -29,7 +29,7 @@ importers:
|
|
|
29
29
|
specifier: ^1.1.6
|
|
30
30
|
version: 1.1.6
|
|
31
31
|
'@cabloy/logger':
|
|
32
|
-
specifier: ^1.1.
|
|
32
|
+
specifier: ^1.1.15
|
|
33
33
|
version: link:packages-utils/logger
|
|
34
34
|
'@cabloy/module-info':
|
|
35
35
|
specifier: ^2.0.0
|
|
@@ -41,7 +41,7 @@ importers:
|
|
|
41
41
|
specifier: ^4.4.16
|
|
42
42
|
version: 4.4.16(vue@3.5.34(typescript@5.9.3))
|
|
43
43
|
'@cabloy/word-utils':
|
|
44
|
-
specifier: ^2.1.
|
|
44
|
+
specifier: ^2.1.14
|
|
45
45
|
version: link:packages-utils/word-utils
|
|
46
46
|
'@cabloy/zod-openapi':
|
|
47
47
|
specifier: ^1.1.6
|
|
@@ -98,7 +98,7 @@ importers:
|
|
|
98
98
|
specifier: ^3.7.2
|
|
99
99
|
version: 3.7.2
|
|
100
100
|
mutate-on-copy:
|
|
101
|
-
specifier: ^1.1.
|
|
101
|
+
specifier: ^1.1.13
|
|
102
102
|
version: link:packages-utils/mutate-on-copy
|
|
103
103
|
openapi3-ts:
|
|
104
104
|
specifier: ^4.5.0
|
|
@@ -131,7 +131,7 @@ importers:
|
|
|
131
131
|
specifier: workspace:^
|
|
132
132
|
version: link:packages-zova/zova
|
|
133
133
|
zova-jsx:
|
|
134
|
-
specifier: ^1.1.
|
|
134
|
+
specifier: ^1.1.48
|
|
135
135
|
version: link:packages-utils/zova-jsx
|
|
136
136
|
zova-module-a-api:
|
|
137
137
|
specifier: workspace:^
|
|
@@ -360,7 +360,7 @@ importers:
|
|
|
360
360
|
specifier: ^3.2.6
|
|
361
361
|
version: 3.2.9(typescript@5.9.3)
|
|
362
362
|
zova-openapi:
|
|
363
|
-
specifier: ^1.1.
|
|
363
|
+
specifier: ^1.1.14
|
|
364
364
|
version: link:packages-utils/zova-openapi
|
|
365
365
|
zova-vite:
|
|
366
366
|
specifier: workspace:^
|
|
@@ -381,7 +381,7 @@ importers:
|
|
|
381
381
|
specifier: ^7.6.2
|
|
382
382
|
version: 7.8.0
|
|
383
383
|
zova-cli-set-front:
|
|
384
|
-
specifier: ^1.2.
|
|
384
|
+
specifier: ^1.2.67
|
|
385
385
|
version: link:../cli-set-front
|
|
386
386
|
devDependencies:
|
|
387
387
|
clean-package:
|
package/vona/nginx.conf
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
server {
|
|
2
|
-
|
|
3
|
-
listen 8000;
|
|
4
|
-
server_name localhost;
|
|
5
|
-
|
|
6
|
-
set $node_ip 127.0.0.1;
|
|
7
|
-
set $node_port 7102;
|
|
8
|
-
|
|
9
|
-
set $projectName cabloy-source;
|
|
10
|
-
|
|
11
|
-
# root /XXX/$projectName/dist/web;
|
|
12
|
-
|
|
13
|
-
location /public {
|
|
14
|
-
root /XXX/cabloy/$projectName;
|
|
15
|
-
internal;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
location /api/ {
|
|
19
|
-
proxy_http_version 1.1;
|
|
20
|
-
proxy_set_header X-Real-IP $remote_addr;
|
|
21
|
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
22
|
-
proxy_set_header X-Forwarded-Host $server_name;
|
|
23
|
-
proxy_set_header X-Forwarded-Proto $scheme;
|
|
24
|
-
proxy_set_header Host $http_host;
|
|
25
|
-
proxy_set_header X-NginX-Proxy true;
|
|
26
|
-
proxy_set_header Upgrade $http_upgrade;
|
|
27
|
-
proxy_set_header Connection "upgrade";
|
|
28
|
-
proxy_pass http://$node_ip:$node_port$request_uri;
|
|
29
|
-
proxy_redirect off;
|
|
30
|
-
proxy_buffer_size 64k;
|
|
31
|
-
proxy_buffers 4 32k;
|
|
32
|
-
proxy_busy_buffers_size 64k;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
location /ws/ {
|
|
36
|
-
proxy_http_version 1.1;
|
|
37
|
-
proxy_set_header X-Real-IP $remote_addr;
|
|
38
|
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
39
|
-
proxy_set_header X-Forwarded-Host $server_name;
|
|
40
|
-
proxy_set_header X-Forwarded-Proto $scheme;
|
|
41
|
-
proxy_set_header Host $http_host;
|
|
42
|
-
proxy_set_header X-NginX-Proxy true;
|
|
43
|
-
proxy_set_header Upgrade $http_upgrade;
|
|
44
|
-
proxy_set_header Connection "upgrade";
|
|
45
|
-
proxy_pass http://$node_ip:$node_port$request_uri;
|
|
46
|
-
proxy_redirect off;
|
|
47
|
-
proxy_buffer_size 64k;
|
|
48
|
-
proxy_buffers 4 32k;
|
|
49
|
-
proxy_busy_buffers_size 64k;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
}
|
|
File without changes
|