vovk-cli 0.0.1-draft.350 → 0.0.1-draft.352

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.
@@ -18,7 +18,15 @@ export async function getProjectFullSchema({ schemaOutAbsolutePath, isNextInstal
18
18
  const metaPath = path.join(schemaOutAbsolutePath, `${META_FILE_NAME}.json`);
19
19
  try {
20
20
  const metaContent = await readFile(metaPath, 'utf-8');
21
- result.meta = { ...result.meta, ...JSON.parse(metaContent) };
21
+ const fromFileMeta = JSON.parse(metaContent);
22
+ result.meta = {
23
+ ...result.meta,
24
+ ...fromFileMeta,
25
+ config: {
26
+ ...result.meta?.config,
27
+ ...fromFileMeta?.config,
28
+ },
29
+ };
22
30
  }
23
31
  catch {
24
32
  isEmptyLogOrWarn(`${META_FILE_NAME}.json not found at ${metaPath}. Using empty meta as fallback.`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.350",
3
+ "version": "0.0.1-draft.352",
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.411"
38
+ "vovk": "^3.0.0-draft.413"
39
39
  },
40
40
  "optionalDependencies": {
41
41
  "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.31"