@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.
@@ -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-87ebfca.0"
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
@@ -331,7 +331,8 @@ async function runInit(ctx, options) {
331
331
  packageManager: {
332
332
  name: detected,
333
333
  command: detected
334
- }
334
+ },
335
+ silent: true
335
336
  });
336
337
  installSpin.stop(`Installed with ${palette.highlight(detected)}`);
337
338
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/vland",
3
- "version": "0.1.2-git-87ebfca.0",
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/loggy": "0.2.0",
39
- "@vlandoss/clibuddy": "0.5.1-git-87ebfca.0"
38
+ "@vlandoss/clibuddy": "0.5.1-git-a483516.0",
39
+ "@vlandoss/loggy": "0.2.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
@@ -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);