vovk-cli 0.1.1 → 0.1.2
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/init/index.mjs +2 -2
- package/package.json +2 -2
package/dist/init/index.mjs
CHANGED
|
@@ -146,7 +146,7 @@ export class Init {
|
|
|
146
146
|
updateTsConfig: updateTsConfig ?? true,
|
|
147
147
|
updateScripts: updateScripts ?? 'implicit',
|
|
148
148
|
validationLibrary: validationLibrary?.toLocaleLowerCase() === 'none' ? null : (validationLibrary ?? 'zod'),
|
|
149
|
-
bundle: bundle ??
|
|
149
|
+
bundle: bundle ?? false,
|
|
150
150
|
dryRun: dryRun ?? false,
|
|
151
151
|
channel: channel ?? 'latest',
|
|
152
152
|
lang: lang ?? [],
|
|
@@ -208,7 +208,7 @@ export class Init {
|
|
|
208
208
|
}
|
|
209
209
|
bundle ??= await confirm({
|
|
210
210
|
message: 'Do you want to set up "tsdown" to bundle TypeScript client (experimental)?',
|
|
211
|
-
default:
|
|
211
|
+
default: false,
|
|
212
212
|
});
|
|
213
213
|
updateScripts ??= !pkgJson
|
|
214
214
|
? undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vovk-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "CLI tool for managing Vovk.ts projects",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://vovk.dev",
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"vovk": ">=3.0.0
|
|
45
|
+
"vovk": ">=3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
48
|
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.7"
|