solana-mobile 0.0.1 → 0.1.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/README.md +9 -0
- package/dist/cli.cjs +800 -122
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +802 -124
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,8 +87,17 @@ npx solana-mobile create --list-templates
|
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
89
|
npx solana-mobile doctor
|
|
90
|
+
npx solana-mobile doctor --json
|
|
91
|
+
npx solana-mobile doctor --verbose
|
|
90
92
|
```
|
|
91
93
|
|
|
94
|
+
Doctor checks the system, JavaScript tooling, Java/JDK, Android SDK components, emulators, and physical Android
|
|
95
|
+
devices. It reports separate readiness for project creation, Android builds, emulator workflows, and physical-device
|
|
96
|
+
workflows.
|
|
97
|
+
|
|
98
|
+
The command is diagnostic only and never installs or modifies dependencies. Missing required dependencies produce
|
|
99
|
+
exit code `1`; warnings do not.
|
|
100
|
+
|
|
92
101
|
### Show command help
|
|
93
102
|
|
|
94
103
|
```bash
|