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 +6 -2
- package/dist/README.md +6 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
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
|
-
-
|
|
231
|
-
- `--
|
|
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
|
-
-
|
|
231
|
-
- `--
|
|
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
|
|