@crossdelta/platform-sdk 0.5.5 → 0.5.6

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 (3) hide show
  1. package/README.md +7 -3
  2. package/bin/cli.js +43 -43
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -151,12 +151,16 @@ These principles guide every decision in `pf`:
151
151
  ### 1. Create a new workspace
152
152
 
153
153
  ```bash
154
- # Install globally
154
+ # Recommended: Use with bunx (no installation, fast)
155
+ bunx @crossdelta/platform-sdk new workspace my-platform
156
+
157
+ # Alternative: Install globally
155
158
  npm install -g @crossdelta/platform-sdk
156
159
  pf new workspace my-platform
157
160
 
158
- # Or use directly with bunx (no installation required)
159
- bunx @crossdelta/platform-sdk new workspace my-platform
161
+ # With bun (fastest)
162
+ bun add -g @crossdelta/platform-sdk
163
+ pf new workspace my-platform
160
164
  ```
161
165
 
162
166
  **Options:**