buildx-cli 1.8.22 → 1.8.23

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 CHANGED
@@ -227,8 +227,9 @@ Modes:
227
227
  - `product`: tries `POST /product/:product_key/projects`, then falls back to `plain` when product creation is denied (for example non-root auth).
228
228
 
229
229
  Key options:
230
- - `--project-id <id>`: target project ID (required)
231
- - `--name <name>`: project name (required)
230
+ - `-i, --interactive`: prompt for missing options (recommended for first-time setup)
231
+ - `--project-id <id>`: target project ID (required unless interactive prompt is used)
232
+ - `--name <name>`: project name (required unless interactive prompt is used)
232
233
  - `--description <text>`: project description (optional)
233
234
  - `--product-key <key>`: enable product mode first, with fallback to plain mode
234
235
  - `--app <none|next|expo|react>`: app scaffold target (default `none`)
@@ -244,6 +245,9 @@ Examples:
244
245
  # backend only (plain mode)
245
246
  npx buildx-cli project:init --project-id hello-world --name "Hello World"
246
247
 
248
+ # interactive guided mode
249
+ npx buildx-cli project:init --interactive
250
+
247
251
  # product mode first, fallback to plain when not allowed
248
252
  npx buildx-cli project:init --project-id hello-world --name "Hello World" --product-key approval
249
253
 
package/dist/README.md CHANGED
@@ -227,8 +227,9 @@ Modes:
227
227
  - `product`: tries `POST /product/:product_key/projects`, then falls back to `plain` when product creation is denied (for example non-root auth).
228
228
 
229
229
  Key options:
230
- - `--project-id <id>`: target project ID (required)
231
- - `--name <name>`: project name (required)
230
+ - `-i, --interactive`: prompt for missing options (recommended for first-time setup)
231
+ - `--project-id <id>`: target project ID (required unless interactive prompt is used)
232
+ - `--name <name>`: project name (required unless interactive prompt is used)
232
233
  - `--description <text>`: project description (optional)
233
234
  - `--product-key <key>`: enable product mode first, with fallback to plain mode
234
235
  - `--app <none|next|expo|react>`: app scaffold target (default `none`)
@@ -244,6 +245,9 @@ Examples:
244
245
  # backend only (plain mode)
245
246
  npx buildx-cli project:init --project-id hello-world --name "Hello World"
246
247
 
248
+ # interactive guided mode
249
+ npx buildx-cli project:init --interactive
250
+
247
251
  # product mode first, fallback to plain when not allowed
248
252
  npx buildx-cli project:init --project-id hello-world --name "Hello World" --product-key approval
249
253