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

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,7 @@ 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 = JSON.parse(metaContent);
21
+ result.meta = { ...result.meta, ...JSON.parse(metaContent) };
22
22
  }
23
23
  catch {
24
24
  isEmptyLogOrWarn(`${META_FILE_NAME}.json not found at ${metaPath}. Using empty meta as fallback.`);
@@ -1,4 +1,4 @@
1
- import { VovkSchemaIdEnum, VovkStrictConfig } from 'vovk';
1
+ import { VovkSchemaIdEnum, type VovkStrictConfig } from 'vovk';
2
2
  export default function getMetaSchema({ config, useEmitConfig }: {
3
3
  config: VovkStrictConfig;
4
4
  useEmitConfig: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.349",
3
+ "version": "0.0.1-draft.350",
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.410"
38
+ "vovk": "^3.0.0-draft.411"
39
39
  },
40
40
  "optionalDependencies": {
41
41
  "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.31"