buildx-cli 1.8.18 → 1.8.19
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 +10 -0
- package/dist/README.md +10 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -160,6 +160,12 @@ Lists available projects for the authenticated account.
|
|
|
160
160
|
npx buildx-cli projects:list
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
+
Filter by product key (`project.product.key`):
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
npx buildx-cli projects:list --product-key approval
|
|
167
|
+
```
|
|
168
|
+
|
|
163
169
|
#### `projects:set-default <project-id>`
|
|
164
170
|
Sets default project used by commands when `--project-id` is not provided.
|
|
165
171
|
|
|
@@ -333,6 +339,7 @@ Behavior:
|
|
|
333
339
|
|
|
334
340
|
Key options:
|
|
335
341
|
- `-p, --project-id <id>`
|
|
342
|
+
- `--product-key <key>` push to all projects where `project.product.key` matches (cannot be used with `--project-id`)
|
|
336
343
|
- `-t, --target-dir <path>`
|
|
337
344
|
- `--collections-file <path>` (when no `--target-dir`)
|
|
338
345
|
- `--filter <pattern...>`
|
|
@@ -341,6 +348,7 @@ Key options:
|
|
|
341
348
|
|
|
342
349
|
```bash
|
|
343
350
|
npx buildx-cli schema:push --project-id hello-world --target-dir ./.sandbox/buildx-cli --dry-run
|
|
351
|
+
npx buildx-cli schema:push --product-key approval --target-dir ./.sandbox/buildx-cli --dry-run
|
|
344
352
|
```
|
|
345
353
|
|
|
346
354
|
#### `schema:types:convert`
|
|
@@ -478,6 +486,7 @@ Behavior:
|
|
|
478
486
|
|
|
479
487
|
Key options:
|
|
480
488
|
- `-p, --project-id <id>`
|
|
489
|
+
- `--product-key <key>` push to all projects where `project.product.key` matches (cannot be used with `--project-id`)
|
|
481
490
|
- `-t, --target-dir <path>`
|
|
482
491
|
- `--functions-dir <path>` (when no `--target-dir`)
|
|
483
492
|
- `-n, --name <function-name>` for a single function
|
|
@@ -489,6 +498,7 @@ Key options:
|
|
|
489
498
|
|
|
490
499
|
```bash
|
|
491
500
|
npx buildx-cli function:push --project-id hello-world --target-dir ./.sandbox/buildx-cli --dry-run
|
|
501
|
+
npx buildx-cli function:push --product-key approval --target-dir ./.sandbox/buildx-cli --dry-run
|
|
492
502
|
```
|
|
493
503
|
|
|
494
504
|
#### `function:list`
|
package/dist/README.md
CHANGED
|
@@ -160,6 +160,12 @@ Lists available projects for the authenticated account.
|
|
|
160
160
|
npx buildx-cli projects:list
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
+
Filter by product key (`project.product.key`):
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
npx buildx-cli projects:list --product-key approval
|
|
167
|
+
```
|
|
168
|
+
|
|
163
169
|
#### `projects:set-default <project-id>`
|
|
164
170
|
Sets default project used by commands when `--project-id` is not provided.
|
|
165
171
|
|
|
@@ -333,6 +339,7 @@ Behavior:
|
|
|
333
339
|
|
|
334
340
|
Key options:
|
|
335
341
|
- `-p, --project-id <id>`
|
|
342
|
+
- `--product-key <key>` push to all projects where `project.product.key` matches (cannot be used with `--project-id`)
|
|
336
343
|
- `-t, --target-dir <path>`
|
|
337
344
|
- `--collections-file <path>` (when no `--target-dir`)
|
|
338
345
|
- `--filter <pattern...>`
|
|
@@ -341,6 +348,7 @@ Key options:
|
|
|
341
348
|
|
|
342
349
|
```bash
|
|
343
350
|
npx buildx-cli schema:push --project-id hello-world --target-dir ./.sandbox/buildx-cli --dry-run
|
|
351
|
+
npx buildx-cli schema:push --product-key approval --target-dir ./.sandbox/buildx-cli --dry-run
|
|
344
352
|
```
|
|
345
353
|
|
|
346
354
|
#### `schema:types:convert`
|
|
@@ -478,6 +486,7 @@ Behavior:
|
|
|
478
486
|
|
|
479
487
|
Key options:
|
|
480
488
|
- `-p, --project-id <id>`
|
|
489
|
+
- `--product-key <key>` push to all projects where `project.product.key` matches (cannot be used with `--project-id`)
|
|
481
490
|
- `-t, --target-dir <path>`
|
|
482
491
|
- `--functions-dir <path>` (when no `--target-dir`)
|
|
483
492
|
- `-n, --name <function-name>` for a single function
|
|
@@ -489,6 +498,7 @@ Key options:
|
|
|
489
498
|
|
|
490
499
|
```bash
|
|
491
500
|
npx buildx-cli function:push --project-id hello-world --target-dir ./.sandbox/buildx-cli --dry-run
|
|
501
|
+
npx buildx-cli function:push --product-key approval --target-dir ./.sandbox/buildx-cli --dry-run
|
|
492
502
|
```
|
|
493
503
|
|
|
494
504
|
#### `function:list`
|