vovk-cli 0.0.1-draft.190 → 0.0.1-draft.192
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/dist/bundle/index.mjs
CHANGED
|
@@ -44,7 +44,7 @@ export default async function bundle({ projectInfo, fullSchema, cliBundleOptions
|
|
|
44
44
|
sourcemap: bundleConfig.sourcemap,
|
|
45
45
|
});
|
|
46
46
|
const outDirAbsolute = path.resolve(cwd, outDir);
|
|
47
|
-
log.
|
|
47
|
+
log.debug(`Bundled index.ts to ${chalkHighlightThing(outDirAbsolute)}`);
|
|
48
48
|
await build({
|
|
49
49
|
entry: path.join(tsFullClientOutAbsoluteDirInput, './schema.ts'),
|
|
50
50
|
dts: true,
|
|
@@ -54,7 +54,7 @@ export default async function bundle({ projectInfo, fullSchema, cliBundleOptions
|
|
|
54
54
|
clean: false,
|
|
55
55
|
sourcemap,
|
|
56
56
|
});
|
|
57
|
-
log.
|
|
57
|
+
log.debug(`Bundled schema.ts to ${chalkHighlightThing(outDirAbsolute)}`);
|
|
58
58
|
const requiresGroup = groupBy(Object.entries(bundleConfig.requires), ([, relativePath]) => relativePath);
|
|
59
59
|
for (const [relativePath, group] of Object.entries(requiresGroup)) {
|
|
60
60
|
await generate({
|
|
@@ -77,5 +77,5 @@ export default async function bundle({ projectInfo, fullSchema, cliBundleOptions
|
|
|
77
77
|
else {
|
|
78
78
|
log.debug(`Temporary TypeScript client output directory not deleted: ${chalkHighlightThing(tsFullClientOutAbsoluteDirInput)}`);
|
|
79
79
|
}
|
|
80
|
-
log.info(`Bundled TypeScript client to ${outDirAbsolute}`);
|
|
80
|
+
log.info(`Bundled TypeScript client to ${chalkHighlightThing(outDirAbsolute)}`);
|
|
81
81
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vovk-cli",
|
|
3
|
-
"version": "0.0.1-draft.
|
|
3
|
+
"version": "0.0.1-draft.192",
|
|
4
4
|
"bin": {
|
|
5
5
|
"vovk": "./dist/index.mjs"
|
|
6
6
|
},
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://vovk.dev",
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"vovk": "^3.0.0-draft.
|
|
38
|
+
"vovk": "^3.0.0-draft.147"
|
|
39
39
|
},
|
|
40
40
|
"optionalDependencies": {
|
|
41
|
-
"vovk-python-client": "^0.0.1-draft.
|
|
41
|
+
"vovk-python-client": "^0.0.1-draft.35"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@inquirer/prompts": "^7.5.1",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"tsdown": "^0.11.7",
|
|
69
69
|
"type-fest": "^4.41.0",
|
|
70
70
|
"undici": "^7.9.0",
|
|
71
|
-
"vovk-openapi": "^0.0.1-draft.
|
|
71
|
+
"vovk-openapi": "^0.0.1-draft.111"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/concat-stream": "^2.0.3",
|