@astryxdesign/cli 0.1.0-canary.797f761 → 0.1.0-canary.9ad489c

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/cli",
3
- "version": "0.1.0-canary.797f761",
3
+ "version": "0.1.0-canary.9ad489c",
4
4
  "displayName": "CLI",
5
5
  "description": "Scaffold projects, browse templates, generate themes, and get agent-ready docs from the command line.",
6
6
  "author": "Meta Open Source",
@@ -54,9 +54,9 @@
54
54
  "jscodeshift": "^17.3.0"
55
55
  },
56
56
  "peerDependencies": {
57
- "@astryxdesign/core": "0.1.0-canary.797f761",
58
- "@astryxdesign/lab": "0.1.0-canary.797f761",
59
- "@astryxdesign/theme-neutral": "0.1.0-canary.797f761"
57
+ "@astryxdesign/core": "0.1.0-canary.9ad489c",
58
+ "@astryxdesign/lab": "0.1.0-canary.9ad489c",
59
+ "@astryxdesign/theme-neutral": "0.1.0-canary.9ad489c"
60
60
  },
61
61
  "peerDependenciesMeta": {
62
62
  "@astryxdesign/core": {
@@ -70,9 +70,9 @@
70
70
  }
71
71
  },
72
72
  "devDependencies": {
73
- "@astryxdesign/core": "0.1.0-canary.797f761",
74
- "@astryxdesign/lab": "0.1.0-canary.797f761",
75
- "@astryxdesign/theme-neutral": "0.1.0-canary.797f761"
73
+ "@astryxdesign/core": "0.1.0-canary.9ad489c",
74
+ "@astryxdesign/lab": "0.1.0-canary.9ad489c",
75
+ "@astryxdesign/theme-neutral": "0.1.0-canary.9ad489c"
76
76
  },
77
77
  "scripts": {
78
78
  "astryx": "node bin/astryx.mjs",
@@ -248,7 +248,7 @@ export function registerInit(program) {
248
248
  humanLog(' 2. Optionally add a theme:');
249
249
  humanLog(" import { neutralTheme } from '@astryxdesign/theme-neutral'");
250
250
  humanLog(' <Theme theme={neutralTheme}>...</Theme>');
251
- humanLog(` 3. ${run} xds --help for all commands`);
251
+ humanLog(` 3. ${run} astryx --help for all commands`);
252
252
  humanLog('');
253
253
  });
254
254
  }
@@ -4,7 +4,7 @@
4
4
  * @file Detect the project's package manager from lockfiles.
5
5
  *
6
6
  * Returns the correct command prefix for running package binaries
7
- * (e.g. 'npx xds', 'yarn xds', 'pnpm exec xds').
7
+ * (e.g. 'npx astryx', 'yarn astryx', 'pnpm exec astryx').
8
8
  */
9
9
 
10
10
  import * as fs from 'node:fs';