vovk-cli 0.0.1-beta.62 → 0.0.1-beta.63
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.
|
@@ -10,8 +10,8 @@ export function getTemplateClientImports({ config, fullSchema, outCwdRelativeDir
|
|
|
10
10
|
outputConfigs,
|
|
11
11
|
});
|
|
12
12
|
const validateOnClientImport = configImports?.validateOnClient ?? null;
|
|
13
|
-
const fetcherImport = configImports?.fetcher ?? 'vovk';
|
|
14
|
-
const createRPCImport = configImports?.createRPC ?? 'vovk';
|
|
13
|
+
const fetcherImport = configImports?.fetcher ?? 'vovk/client/fetcher';
|
|
14
|
+
const createRPCImport = configImports?.createRPC ?? 'vovk/client/createRPC';
|
|
15
15
|
const imports = {
|
|
16
16
|
fetcher: typeof fetcherImport === 'string' ? [fetcherImport] : fetcherImport,
|
|
17
17
|
validateOnClient: typeof validateOnClientImport === 'string'
|
package/dist/init/index.mjs
CHANGED
|
@@ -138,9 +138,10 @@ export class Init {
|
|
|
138
138
|
options: { validationLibrary, channel, bundle, lang, dryRun },
|
|
139
139
|
});
|
|
140
140
|
log.info('Config created successfully at ' + chalkHighlightThing(configAbsolutePath));
|
|
141
|
+
log.info(`You can now create a root segment with ${chalkHighlightThing('npx vovk new segment')} command`);
|
|
141
142
|
}
|
|
142
143
|
catch (error) {
|
|
143
|
-
log.error(`Failed to create config: ${error.message}`);
|
|
144
|
+
log.error(`Failed to create config: ${error.message}. Please, refer to the documentation at https://vovk.dev/config`);
|
|
144
145
|
}
|
|
145
146
|
}
|
|
146
147
|
async main({ prefix, yes, logLevel, useNpm, useYarn, usePnpm, useBun, skipInstall, updateTsConfig, updateScripts, validationLibrary, bundle, lang, dryRun, channel, }) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vovk-cli",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.63",
|
|
4
4
|
"description": "CLI tool for managing Vovk.ts projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vovk": "./dist/index.mjs"
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://vovk.dev",
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"vovk": "^3.0.0-beta.
|
|
41
|
-
"vovk-ajv": "^0.0.0-beta.
|
|
42
|
-
"vovk-client": "^0.0.4-beta.
|
|
43
|
-
"vovk-python": "^0.0.1-beta.
|
|
44
|
-
"vovk-rust": "^0.0.1-beta.
|
|
40
|
+
"vovk": "^3.0.0-beta.100",
|
|
41
|
+
"vovk-ajv": "^0.0.0-beta.5",
|
|
42
|
+
"vovk-client": "^0.0.4-beta.5",
|
|
43
|
+
"vovk-python": "^0.0.1-beta.5",
|
|
44
|
+
"vovk-rust": "^0.0.1-beta.7"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
47
|
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.57"
|