@vlandoss/vland 0.1.2-git-87ebfca.0 → 0.1.2-git-a483516.0
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/cli.usage.kdl +1 -1
- package/dist/run.mjs +2 -1
- package/package.json +3 -3
- package/src/actions/init.ts +1 -1
package/dist/cli.usage.kdl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @generated by @usage-spec/commander from Commander.js metadata
|
|
2
2
|
name vland
|
|
3
3
|
bin vland
|
|
4
|
-
version "0.1.2-git-
|
|
4
|
+
version "0.1.2-git-a483516.0"
|
|
5
5
|
usage "[options] [command]"
|
|
6
6
|
flag --usage help="print KDL spec for this CLI (https://kdl.dev)"
|
|
7
7
|
cmd completion help="print shell completion script 🐚 (usage)" {
|
package/dist/run.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlandoss/vland",
|
|
3
|
-
"version": "0.1.2-git-
|
|
3
|
+
"version": "0.1.2-git-a483516.0",
|
|
4
4
|
"description": "The CLI to init a new project in Variable Land",
|
|
5
5
|
"homepage": "https://github.com/variableland/dx/tree/main/packages/vland#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"commander": "14.0.3",
|
|
36
36
|
"giget": "2.0.0",
|
|
37
37
|
"nypm": "0.6.0",
|
|
38
|
-
"@vlandoss/
|
|
39
|
-
"@vlandoss/
|
|
38
|
+
"@vlandoss/clibuddy": "0.5.1-git-a483516.0",
|
|
39
|
+
"@vlandoss/loggy": "0.2.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
package/src/actions/init.ts
CHANGED
|
@@ -162,7 +162,7 @@ export async function runInit(ctx: Context, options: InitOptions) {
|
|
|
162
162
|
const installSpin = spinner();
|
|
163
163
|
installSpin.start(`Installing dependencies with ${palette.highlight(detected)}`);
|
|
164
164
|
try {
|
|
165
|
-
await installDependencies({ cwd: dir, packageManager: { name: detected, command: detected } });
|
|
165
|
+
await installDependencies({ cwd: dir, packageManager: { name: detected, command: detected }, silent: true });
|
|
166
166
|
installSpin.stop(`Installed with ${palette.highlight(detected)}`);
|
|
167
167
|
} catch (error) {
|
|
168
168
|
installSpin.stop("Failed to install dependencies", 1);
|