vovk-cli 0.0.1-draft.280 → 0.0.1-draft.282
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
|
@@ -70,6 +70,8 @@ export async function bundle({ projectInfo, fullSchema, cliBundleOptions, }) {
|
|
|
70
70
|
forceNothingWrittenLog: true,
|
|
71
71
|
fullSchema,
|
|
72
72
|
locatedSegments,
|
|
73
|
+
package: bundleConfig.package,
|
|
74
|
+
readme: bundleConfig.readme,
|
|
73
75
|
cliGenerateOptions: {
|
|
74
76
|
composedFrom: group.map(([templateName]) => templateName),
|
|
75
77
|
composedOut: path.resolve(outDir, relativePath),
|
|
@@ -171,7 +171,7 @@ export async function generate({ isEnsuringClient = false, projectInfo, forceNot
|
|
|
171
171
|
hasMixins,
|
|
172
172
|
isVovkProject,
|
|
173
173
|
});
|
|
174
|
-
const outAbsoluteDir = path.
|
|
174
|
+
const outAbsoluteDir = path.resolve(cwd, outCwdRelativeDir);
|
|
175
175
|
return {
|
|
176
176
|
written,
|
|
177
177
|
templateName,
|
|
@@ -256,7 +256,7 @@ export async function generate({ isEnsuringClient = false, projectInfo, forceNot
|
|
|
256
256
|
templateName,
|
|
257
257
|
};
|
|
258
258
|
}));
|
|
259
|
-
const outAbsoluteDir = path.
|
|
259
|
+
const outAbsoluteDir = path.resolve(cwd, outCwdRelativeDir);
|
|
260
260
|
// Remove unlisted directories in the output directory
|
|
261
261
|
await removeUnlistedDirectories(outAbsoluteDir, segmentNames.map((s) => s || ROOT_SEGMENT_FILE_NAME));
|
|
262
262
|
return {
|
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.282",
|
|
4
4
|
"bin": {
|
|
5
5
|
"vovk": "./dist/index.mjs"
|
|
6
6
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://vovk.dev",
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"vovk": "^3.0.0-draft.
|
|
38
|
+
"vovk": "^3.0.0-draft.316"
|
|
39
39
|
},
|
|
40
40
|
"optionalDependencies": {
|
|
41
41
|
"vovk-python": "^0.0.1-draft.41"
|