@xaidenlabs/uso 1.1.43 → 1.1.44

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.
Files changed (2) hide show
  1. package/bin/index.js +6 -0
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -19,6 +19,12 @@ program
19
19
  .option('--wsl', 'Install in Stealth WSL Mode (Windows Only)')
20
20
  .action(init);
21
21
 
22
+ program
23
+ .command('setup [component]')
24
+ .description('Alias for init (Install components)')
25
+ .option('--wsl', 'Install in Stealth WSL Mode (Windows Only)')
26
+ .action(init);
27
+
22
28
  program
23
29
  .command('doctor')
24
30
  .description('Check if the environment is ready for Solana development')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaidenlabs/uso",
3
- "version": "1.1.43",
3
+ "version": "1.1.44",
4
4
  "description": "Universal Solana Orchestrator - A one-command setup tool for Solana and Anchor development environments on Windows, macOS, and Linux.",
5
5
  "bin": {
6
6
  "uso": "bin/index.js"