@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.
- package/bin/index.js +6 -0
- 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