mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-02-06 11:10:10 +00:00
Merge pull request #2765 from balena-io/dfunckt-patch-1
Pluralize command categories in docs
This commit is contained in:
commit
b27dcdd582
@ -54,15 +54,15 @@ interface Documentation {
|
|||||||
|
|
||||||
// Mapping folders names to custom headings in the docs
|
// Mapping folders names to custom headings in the docs
|
||||||
const commandHeadings: { [key: string]: string } = {
|
const commandHeadings: { [key: string]: string } = {
|
||||||
'api-key': 'API Key',
|
'api-key': 'API Keys',
|
||||||
'api-keys': 'API Keys',
|
'api-keys': 'API Keys',
|
||||||
login: 'Authentication',
|
login: 'Authentication',
|
||||||
whoami: 'Authentication',
|
whoami: 'Authentication',
|
||||||
logout: 'Authentication',
|
logout: 'Authentication',
|
||||||
env: 'Environment Variable',
|
env: 'Environment Variables',
|
||||||
envs: 'Environment Variables',
|
envs: 'Environment Variables',
|
||||||
help: 'Help and Version',
|
help: 'Help and Version',
|
||||||
key: 'SSH Key',
|
key: 'SSH Keys',
|
||||||
keys: 'SSH Keys',
|
keys: 'SSH Keys',
|
||||||
orgs: 'Organizations',
|
orgs: 'Organizations',
|
||||||
os: 'OS',
|
os: 'OS',
|
||||||
@ -73,6 +73,12 @@ const commandHeadings: { [key: string]: string } = {
|
|||||||
build: 'Deploy',
|
build: 'Deploy',
|
||||||
join: 'Platform',
|
join: 'Platform',
|
||||||
leave: 'Platform',
|
leave: 'Platform',
|
||||||
|
app: 'Apps',
|
||||||
|
block: 'Blocks',
|
||||||
|
device: 'Devices',
|
||||||
|
fleet: 'Fleets',
|
||||||
|
release: 'Releases',
|
||||||
|
tag: 'Tags',
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fetch all available commands
|
// Fetch all available commands
|
||||||
|
@ -160,16 +160,13 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
|
|
||||||
# CLI Command Reference
|
# CLI Command Reference
|
||||||
|
|
||||||
- API Key
|
- API Keys
|
||||||
|
|
||||||
- [api-key generate <name>](#api-key-generate-name)
|
- [api-key generate <name>](#api-key-generate-name)
|
||||||
- [api-key revoke <ids>](#api-key-revoke-ids)
|
- [api-key revoke <ids>](#api-key-revoke-ids)
|
||||||
|
|
||||||
- API Keys
|
|
||||||
|
|
||||||
- [api-keys](#api-keys)
|
- [api-keys](#api-keys)
|
||||||
|
|
||||||
- App
|
- Apps
|
||||||
|
|
||||||
- [app create <name>](#app-create-name)
|
- [app create <name>](#app-create-name)
|
||||||
|
|
||||||
@ -179,7 +176,7 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
- [logout](#logout)
|
- [logout](#logout)
|
||||||
- [whoami](#whoami)
|
- [whoami](#whoami)
|
||||||
|
|
||||||
- Block
|
- Blocks
|
||||||
|
|
||||||
- [block create <name>](#block-create-name)
|
- [block create <name>](#block-create-name)
|
||||||
|
|
||||||
@ -196,7 +193,7 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
- [build [source]](#build-source)
|
- [build [source]](#build-source)
|
||||||
- [deploy <fleet> [image]](#deploy-fleet-image)
|
- [deploy <fleet> [image]](#deploy-fleet-image)
|
||||||
|
|
||||||
- Device
|
- Devices
|
||||||
|
|
||||||
- [device deactivate <uuid>](#device-deactivate-uuid)
|
- [device deactivate <uuid>](#device-deactivate-uuid)
|
||||||
- [device identify <uuid>](#device-identify-uuid)
|
- [device identify <uuid>](#device-identify-uuid)
|
||||||
@ -217,23 +214,17 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
- [device start-service <uuid>](#device-start-service-uuid)
|
- [device start-service <uuid>](#device-start-service-uuid)
|
||||||
- [device stop-service <uuid>](#device-stop-service-uuid)
|
- [device stop-service <uuid>](#device-stop-service-uuid)
|
||||||
- [device track-fleet <uuid>](#device-track-fleet-uuid)
|
- [device track-fleet <uuid>](#device-track-fleet-uuid)
|
||||||
|
|
||||||
- Devices
|
|
||||||
|
|
||||||
- [devices](#devices)
|
- [devices](#devices)
|
||||||
- [devices supported](#devices-supported)
|
- [devices supported](#devices-supported)
|
||||||
|
|
||||||
- Environment Variable
|
|
||||||
|
|
||||||
- [env add <name> [value]](#env-add-name-value)
|
|
||||||
- [env rename <id> <value>](#env-rename-id-value)
|
|
||||||
- [env rm <id>](#env-rm-id)
|
|
||||||
|
|
||||||
- Environment Variables
|
- Environment Variables
|
||||||
|
|
||||||
- [envs](#envs)
|
- [envs](#envs)
|
||||||
|
- [env rm <id>](#env-rm-id)
|
||||||
|
- [env add <name> [value]](#env-add-name-value)
|
||||||
|
- [env rename <id> <value>](#env-rename-id-value)
|
||||||
|
|
||||||
- Fleet
|
- Fleets
|
||||||
|
|
||||||
- [fleet create <name>](#fleet-create-name)
|
- [fleet create <name>](#fleet-create-name)
|
||||||
- [fleet <fleet>](#fleet-fleet)
|
- [fleet <fleet>](#fleet-fleet)
|
||||||
@ -243,9 +234,6 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
- [fleet restart <fleet>](#fleet-restart-fleet)
|
- [fleet restart <fleet>](#fleet-restart-fleet)
|
||||||
- [fleet rm <fleet>](#fleet-rm-fleet)
|
- [fleet rm <fleet>](#fleet-rm-fleet)
|
||||||
- [fleet track-latest <slug>](#fleet-track-latest-slug)
|
- [fleet track-latest <slug>](#fleet-track-latest-slug)
|
||||||
|
|
||||||
- Fleets
|
|
||||||
|
|
||||||
- [fleets](#fleets)
|
- [fleets](#fleets)
|
||||||
|
|
||||||
- Local
|
- Local
|
||||||
@ -292,42 +280,33 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
|
|
||||||
- [push <fleetordevice>](#push-fleetordevice)
|
- [push <fleetordevice>](#push-fleetordevice)
|
||||||
|
|
||||||
- Release
|
- Releases
|
||||||
|
|
||||||
- [release finalize <commitorid>](#release-finalize-commitorid)
|
- [release finalize <commitorid>](#release-finalize-commitorid)
|
||||||
- [release <commitorid>](#release-commitorid)
|
- [release <commitorid>](#release-commitorid)
|
||||||
- [release invalidate <commitorid>](#release-invalidate-commitorid)
|
- [release invalidate <commitorid>](#release-invalidate-commitorid)
|
||||||
- [release validate <commitorid>](#release-validate-commitorid)
|
- [release validate <commitorid>](#release-validate-commitorid)
|
||||||
|
|
||||||
- Releases
|
|
||||||
|
|
||||||
- [releases <fleet>](#releases-fleet)
|
- [releases <fleet>](#releases-fleet)
|
||||||
|
|
||||||
- Settings
|
- Settings
|
||||||
|
|
||||||
- [settings](#settings)
|
- [settings](#settings)
|
||||||
|
|
||||||
- SSH Key
|
- SSH Keys
|
||||||
|
|
||||||
- [key add <name> [path]](#key-add-name-path)
|
- [key add <name> [path]](#key-add-name-path)
|
||||||
- [key <id>](#key-id)
|
- [key <id>](#key-id)
|
||||||
- [key rm <id>](#key-rm-id)
|
- [key rm <id>](#key-rm-id)
|
||||||
|
|
||||||
- SSH Keys
|
|
||||||
|
|
||||||
- [keys](#keys)
|
- [keys](#keys)
|
||||||
|
|
||||||
- Support
|
- Support
|
||||||
|
|
||||||
- [support <action>](#support-action)
|
- [support <action>](#support-action)
|
||||||
|
|
||||||
- Tag
|
- Tags
|
||||||
|
|
||||||
- [tag rm <tagkey>](#tag-rm-tagkey)
|
- [tag rm <tagkey>](#tag-rm-tagkey)
|
||||||
- [tag set <tagkey> [value]](#tag-set-tagkey-value)
|
- [tag set <tagkey> [value]](#tag-set-tagkey-value)
|
||||||
|
|
||||||
- Tags
|
|
||||||
|
|
||||||
- [tags](#tags)
|
- [tags](#tags)
|
||||||
|
|
||||||
- Utilities
|
- Utilities
|
||||||
@ -338,7 +317,7 @@ are encouraged to regularly update the balena CLI to the latest version.
|
|||||||
|
|
||||||
- [version](#version)
|
- [version](#version)
|
||||||
|
|
||||||
# API Key
|
# API Keys
|
||||||
|
|
||||||
## api-key generate <name>
|
## api-key generate <name>
|
||||||
|
|
||||||
@ -380,8 +359,6 @@ the API key ids
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# API Keys
|
|
||||||
|
|
||||||
## api-keys
|
## api-keys
|
||||||
|
|
||||||
Print a list of balenaCloud API keys.
|
Print a list of balenaCloud API keys.
|
||||||
@ -402,7 +379,7 @@ show API keys for your user
|
|||||||
|
|
||||||
fleet name or slug (preferred)
|
fleet name or slug (preferred)
|
||||||
|
|
||||||
# App
|
# Apps
|
||||||
|
|
||||||
## app create <name>
|
## app create <name>
|
||||||
|
|
||||||
@ -524,7 +501,7 @@ Examples:
|
|||||||
|
|
||||||
$ balena whoami
|
$ balena whoami
|
||||||
|
|
||||||
# Block
|
# Blocks
|
||||||
|
|
||||||
## block create <name>
|
## block create <name>
|
||||||
|
|
||||||
@ -1215,7 +1192,7 @@ Docker host TLS certificate file
|
|||||||
|
|
||||||
Docker host TLS key file
|
Docker host TLS key file
|
||||||
|
|
||||||
# Device
|
# Devices
|
||||||
|
|
||||||
## device deactivate <uuid>
|
## device deactivate <uuid>
|
||||||
|
|
||||||
@ -1775,8 +1752,6 @@ the uuid of the device to make track the fleet's release
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# Devices
|
|
||||||
|
|
||||||
## devices
|
## devices
|
||||||
|
|
||||||
List all of your devices.
|
List all of your devices.
|
||||||
@ -1836,7 +1811,149 @@ Examples:
|
|||||||
|
|
||||||
produce JSON output instead of tabular output
|
produce JSON output instead of tabular output
|
||||||
|
|
||||||
# Environment Variable
|
# Environment Variables
|
||||||
|
|
||||||
|
## envs
|
||||||
|
|
||||||
|
List the environment or configuration variables of a fleet, device or
|
||||||
|
service, as selected by the respective command-line options. (A service
|
||||||
|
corresponds to a Docker image/container in a microservices fleet.)
|
||||||
|
|
||||||
|
The results include fleet-wide (multiple devices), device-specific (multiple
|
||||||
|
services on a specific device) and service-specific variables that apply to the
|
||||||
|
selected fleet, device or service. It can be thought of as including inherited
|
||||||
|
variables; for example, a service inherits device-wide variables, and a device
|
||||||
|
inherits fleet-wide variables.
|
||||||
|
|
||||||
|
The printed output may include DEVICE and/or SERVICE columns to distinguish
|
||||||
|
between fleet-wide, device-specific and service-specific variables.
|
||||||
|
An asterisk in these columns indicates that the variable applies to
|
||||||
|
"all devices" or "all services".
|
||||||
|
|
||||||
|
The --config option is used to list "configuration variables" that control
|
||||||
|
balena platform features, as opposed to custom environment variables defined
|
||||||
|
by the user. The --config and the --service options are mutually exclusive
|
||||||
|
because configuration variables cannot be set for specific services.
|
||||||
|
|
||||||
|
The --json option is recommended when scripting the output of this command,
|
||||||
|
because the JSON format is less likely to change and it better represents data
|
||||||
|
types like lists and empty strings. The 'jq' utility may be helpful in shell
|
||||||
|
scripts (https://stedolan.github.io/jq/manual/). When --json is used, an empty
|
||||||
|
JSON array ([]) is printed instead of an error message when no variables exist
|
||||||
|
for the given query. When querying variables for a device, note that the fleet
|
||||||
|
name may be null in JSON output (or 'N/A' in tabular output) if the fleet that
|
||||||
|
the device belonged to is no longer accessible by the current user (for example,
|
||||||
|
in case the current user was removed from the fleet by the fleet's owner).
|
||||||
|
|
||||||
|
Fleets may be specified by fleet name or slug. Fleet slugs are
|
||||||
|
the recommended option, as they are unique and unambiguous. Slugs can be
|
||||||
|
listed with the `balena fleets` command. Note that slugs may change if the
|
||||||
|
fleet is renamed. Fleet names are not unique and may result in "Fleet is
|
||||||
|
ambiguous" errors at any time (even if it "used to work in the past"), for
|
||||||
|
example if the name clashes with a newly created public fleet, or with fleets
|
||||||
|
from other balena accounts that you may be invited to join under any role.
|
||||||
|
For this reason, fleet names are especially discouraged in scripts (e.g. CI
|
||||||
|
environments).
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
$ balena envs --fleet myorg/myfleet
|
||||||
|
$ balena envs --fleet MyFleet --json
|
||||||
|
$ balena envs --fleet MyFleet --service MyService
|
||||||
|
$ balena envs --fleet MyFleet --config
|
||||||
|
$ balena envs --device 7cf02a6
|
||||||
|
$ balena envs --device 7cf02a6 --json
|
||||||
|
$ balena envs --device 7cf02a6 --config --json
|
||||||
|
$ balena envs --device 7cf02a6 --service MyService
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
#### -f, --fleet FLEET
|
||||||
|
|
||||||
|
fleet name or slug (preferred)
|
||||||
|
|
||||||
|
#### -c, --config
|
||||||
|
|
||||||
|
show configuration variables only
|
||||||
|
|
||||||
|
#### -d, --device DEVICE
|
||||||
|
|
||||||
|
device UUID
|
||||||
|
|
||||||
|
#### -j, --json
|
||||||
|
|
||||||
|
produce JSON output instead of tabular output
|
||||||
|
|
||||||
|
#### -s, --service SERVICE
|
||||||
|
|
||||||
|
service name
|
||||||
|
|
||||||
|
## env rm <id>
|
||||||
|
|
||||||
|
Remove a configuration or environment variable from a fleet, device
|
||||||
|
or service, as selected by command-line options.
|
||||||
|
|
||||||
|
Variables are selected by their database ID (as reported by the 'balena envs'
|
||||||
|
command) and one of six database "resource types":
|
||||||
|
|
||||||
|
- fleet environment variable
|
||||||
|
- fleet configuration variable (--config)
|
||||||
|
- fleet service variable (--service)
|
||||||
|
- device environment variable (--device)
|
||||||
|
- device configuration variable (--device --config)
|
||||||
|
- device service variable (--device --service)
|
||||||
|
|
||||||
|
The --device option selects a device-specific variable instead of a fleet
|
||||||
|
variable.
|
||||||
|
|
||||||
|
The --config option selects a configuration variable. Configuration variable
|
||||||
|
names typically start with the 'BALENA_' or 'RESIN_' prefixes and are used to
|
||||||
|
configure balena platform features.
|
||||||
|
|
||||||
|
The --service option selects a service variable, which is an environment variable
|
||||||
|
that applies to a specifc service (container) in a microservices (multicontainer)
|
||||||
|
fleet.
|
||||||
|
|
||||||
|
The --service and --config options cannot be used together, but they can be
|
||||||
|
used alongside the --device option to select a device-specific service or
|
||||||
|
configuration variable.
|
||||||
|
|
||||||
|
Interactive confirmation is normally asked before the variable is deleted.
|
||||||
|
The --yes option disables this behavior.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
$ balena env rm 123123
|
||||||
|
$ balena env rm 234234 --yes
|
||||||
|
$ balena env rm 345345 --config
|
||||||
|
$ balena env rm 456456 --service
|
||||||
|
$ balena env rm 567567 --device
|
||||||
|
$ balena env rm 678678 --device --config
|
||||||
|
$ balena env rm 789789 --device --service --yes
|
||||||
|
|
||||||
|
### Arguments
|
||||||
|
|
||||||
|
#### ID
|
||||||
|
|
||||||
|
variable's numeric database ID
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
#### -c, --config
|
||||||
|
|
||||||
|
select a configuration variable (may be used together with the --device option)
|
||||||
|
|
||||||
|
#### -d, --device
|
||||||
|
|
||||||
|
select a device-specific variable instead of a fleet variable
|
||||||
|
|
||||||
|
#### -s, --service
|
||||||
|
|
||||||
|
select a service variable (may be used together with the --device option)
|
||||||
|
|
||||||
|
#### -y, --yes
|
||||||
|
|
||||||
|
do not prompt for confirmation before deleting the variable
|
||||||
|
|
||||||
## env add <name> [value]
|
## env add <name> [value]
|
||||||
|
|
||||||
@ -1976,151 +2093,7 @@ select a device-specific variable instead of a fleet variable
|
|||||||
|
|
||||||
select a service variable (may be used together with the --device option)
|
select a service variable (may be used together with the --device option)
|
||||||
|
|
||||||
## env rm <id>
|
# Fleets
|
||||||
|
|
||||||
Remove a configuration or environment variable from a fleet, device
|
|
||||||
or service, as selected by command-line options.
|
|
||||||
|
|
||||||
Variables are selected by their database ID (as reported by the 'balena envs'
|
|
||||||
command) and one of six database "resource types":
|
|
||||||
|
|
||||||
- fleet environment variable
|
|
||||||
- fleet configuration variable (--config)
|
|
||||||
- fleet service variable (--service)
|
|
||||||
- device environment variable (--device)
|
|
||||||
- device configuration variable (--device --config)
|
|
||||||
- device service variable (--device --service)
|
|
||||||
|
|
||||||
The --device option selects a device-specific variable instead of a fleet
|
|
||||||
variable.
|
|
||||||
|
|
||||||
The --config option selects a configuration variable. Configuration variable
|
|
||||||
names typically start with the 'BALENA_' or 'RESIN_' prefixes and are used to
|
|
||||||
configure balena platform features.
|
|
||||||
|
|
||||||
The --service option selects a service variable, which is an environment variable
|
|
||||||
that applies to a specifc service (container) in a microservices (multicontainer)
|
|
||||||
fleet.
|
|
||||||
|
|
||||||
The --service and --config options cannot be used together, but they can be
|
|
||||||
used alongside the --device option to select a device-specific service or
|
|
||||||
configuration variable.
|
|
||||||
|
|
||||||
Interactive confirmation is normally asked before the variable is deleted.
|
|
||||||
The --yes option disables this behavior.
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
|
|
||||||
$ balena env rm 123123
|
|
||||||
$ balena env rm 234234 --yes
|
|
||||||
$ balena env rm 345345 --config
|
|
||||||
$ balena env rm 456456 --service
|
|
||||||
$ balena env rm 567567 --device
|
|
||||||
$ balena env rm 678678 --device --config
|
|
||||||
$ balena env rm 789789 --device --service --yes
|
|
||||||
|
|
||||||
### Arguments
|
|
||||||
|
|
||||||
#### ID
|
|
||||||
|
|
||||||
variable's numeric database ID
|
|
||||||
|
|
||||||
### Options
|
|
||||||
|
|
||||||
#### -c, --config
|
|
||||||
|
|
||||||
select a configuration variable (may be used together with the --device option)
|
|
||||||
|
|
||||||
#### -d, --device
|
|
||||||
|
|
||||||
select a device-specific variable instead of a fleet variable
|
|
||||||
|
|
||||||
#### -s, --service
|
|
||||||
|
|
||||||
select a service variable (may be used together with the --device option)
|
|
||||||
|
|
||||||
#### -y, --yes
|
|
||||||
|
|
||||||
do not prompt for confirmation before deleting the variable
|
|
||||||
|
|
||||||
# Environment Variables
|
|
||||||
|
|
||||||
## envs
|
|
||||||
|
|
||||||
List the environment or configuration variables of a fleet, device or
|
|
||||||
service, as selected by the respective command-line options. (A service
|
|
||||||
corresponds to a Docker image/container in a microservices fleet.)
|
|
||||||
|
|
||||||
The results include fleet-wide (multiple devices), device-specific (multiple
|
|
||||||
services on a specific device) and service-specific variables that apply to the
|
|
||||||
selected fleet, device or service. It can be thought of as including inherited
|
|
||||||
variables; for example, a service inherits device-wide variables, and a device
|
|
||||||
inherits fleet-wide variables.
|
|
||||||
|
|
||||||
The printed output may include DEVICE and/or SERVICE columns to distinguish
|
|
||||||
between fleet-wide, device-specific and service-specific variables.
|
|
||||||
An asterisk in these columns indicates that the variable applies to
|
|
||||||
"all devices" or "all services".
|
|
||||||
|
|
||||||
The --config option is used to list "configuration variables" that control
|
|
||||||
balena platform features, as opposed to custom environment variables defined
|
|
||||||
by the user. The --config and the --service options are mutually exclusive
|
|
||||||
because configuration variables cannot be set for specific services.
|
|
||||||
|
|
||||||
The --json option is recommended when scripting the output of this command,
|
|
||||||
because the JSON format is less likely to change and it better represents data
|
|
||||||
types like lists and empty strings. The 'jq' utility may be helpful in shell
|
|
||||||
scripts (https://stedolan.github.io/jq/manual/). When --json is used, an empty
|
|
||||||
JSON array ([]) is printed instead of an error message when no variables exist
|
|
||||||
for the given query. When querying variables for a device, note that the fleet
|
|
||||||
name may be null in JSON output (or 'N/A' in tabular output) if the fleet that
|
|
||||||
the device belonged to is no longer accessible by the current user (for example,
|
|
||||||
in case the current user was removed from the fleet by the fleet's owner).
|
|
||||||
|
|
||||||
Fleets may be specified by fleet name or slug. Fleet slugs are
|
|
||||||
the recommended option, as they are unique and unambiguous. Slugs can be
|
|
||||||
listed with the `balena fleets` command. Note that slugs may change if the
|
|
||||||
fleet is renamed. Fleet names are not unique and may result in "Fleet is
|
|
||||||
ambiguous" errors at any time (even if it "used to work in the past"), for
|
|
||||||
example if the name clashes with a newly created public fleet, or with fleets
|
|
||||||
from other balena accounts that you may be invited to join under any role.
|
|
||||||
For this reason, fleet names are especially discouraged in scripts (e.g. CI
|
|
||||||
environments).
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
|
|
||||||
$ balena envs --fleet myorg/myfleet
|
|
||||||
$ balena envs --fleet MyFleet --json
|
|
||||||
$ balena envs --fleet MyFleet --service MyService
|
|
||||||
$ balena envs --fleet MyFleet --config
|
|
||||||
$ balena envs --device 7cf02a6
|
|
||||||
$ balena envs --device 7cf02a6 --json
|
|
||||||
$ balena envs --device 7cf02a6 --config --json
|
|
||||||
$ balena envs --device 7cf02a6 --service MyService
|
|
||||||
|
|
||||||
### Options
|
|
||||||
|
|
||||||
#### -f, --fleet FLEET
|
|
||||||
|
|
||||||
fleet name or slug (preferred)
|
|
||||||
|
|
||||||
#### -c, --config
|
|
||||||
|
|
||||||
show configuration variables only
|
|
||||||
|
|
||||||
#### -d, --device DEVICE
|
|
||||||
|
|
||||||
device UUID
|
|
||||||
|
|
||||||
#### -j, --json
|
|
||||||
|
|
||||||
produce JSON output instead of tabular output
|
|
||||||
|
|
||||||
#### -s, --service SERVICE
|
|
||||||
|
|
||||||
service name
|
|
||||||
|
|
||||||
# Fleet
|
|
||||||
|
|
||||||
## fleet create <name>
|
## fleet create <name>
|
||||||
|
|
||||||
@ -2367,8 +2340,6 @@ the slug of the fleet to make track the latest release
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# Fleets
|
|
||||||
|
|
||||||
## fleets
|
## fleets
|
||||||
|
|
||||||
List all your balena fleets.
|
List all your balena fleets.
|
||||||
@ -3401,7 +3372,7 @@ as final by default unless this option is given.
|
|||||||
|
|
||||||
The notes for this release
|
The notes for this release
|
||||||
|
|
||||||
# Release
|
# Releases
|
||||||
|
|
||||||
## release finalize <commitOrId>
|
## release finalize <commitOrId>
|
||||||
|
|
||||||
@ -3500,8 +3471,6 @@ the commit or ID of the release to validate
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# Releases
|
|
||||||
|
|
||||||
## releases <fleet>
|
## releases <fleet>
|
||||||
|
|
||||||
List all releases of the given fleet.
|
List all releases of the given fleet.
|
||||||
@ -3550,7 +3519,7 @@ Examples:
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# SSH Key
|
# SSH Keys
|
||||||
|
|
||||||
## key add <name> [path]
|
## key add <name> [path]
|
||||||
|
|
||||||
@ -3630,8 +3599,6 @@ balenaCloud ID for the SSH key
|
|||||||
|
|
||||||
answer "yes" to all questions (non interactive use)
|
answer "yes" to all questions (non interactive use)
|
||||||
|
|
||||||
# SSH Keys
|
|
||||||
|
|
||||||
## keys
|
## keys
|
||||||
|
|
||||||
List all SSH keys registered in balenaCloud for the logged in user.
|
List all SSH keys registered in balenaCloud for the logged in user.
|
||||||
@ -3692,7 +3659,7 @@ comma-separated list (no spaces) of fleet names or slugs (preferred)
|
|||||||
|
|
||||||
length of time to enable support for, in (h)ours or (d)ays, e.g. 12h, 2d
|
length of time to enable support for, in (h)ours or (d)ays, e.g. 12h, 2d
|
||||||
|
|
||||||
# Tag
|
# Tags
|
||||||
|
|
||||||
## tag rm <tagKey>
|
## tag rm <tagKey>
|
||||||
|
|
||||||
@ -3789,8 +3756,6 @@ device UUID
|
|||||||
|
|
||||||
release id
|
release id
|
||||||
|
|
||||||
# Tags
|
|
||||||
|
|
||||||
## tags
|
## tags
|
||||||
|
|
||||||
List all tags and their values for the specified fleet, device or release.
|
List all tags and their values for the specified fleet, device or release.
|
||||||
|
317
npm-shrinkwrap.json
generated
317
npm-shrinkwrap.json
generated
@ -803,17 +803,17 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/helper-string-parser": {
|
"node_modules/@babel/helper-string-parser": {
|
||||||
"version": "7.23.4",
|
"version": "7.24.1",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz",
|
||||||
"integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==",
|
"integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/helper-validator-identifier": {
|
"node_modules/@babel/helper-validator-identifier": {
|
||||||
"version": "7.22.20",
|
"version": "7.24.5",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz",
|
||||||
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
|
"integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
}
|
}
|
||||||
@ -874,9 +874,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/@babel/parser": {
|
"node_modules/@babel/parser": {
|
||||||
"version": "7.24.4",
|
"version": "7.24.5",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz",
|
||||||
"integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==",
|
"integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
"parser": "bin/babel-parser.js"
|
"parser": "bin/babel-parser.js"
|
||||||
@ -912,13 +912,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/template/node_modules/@babel/types": {
|
"node_modules/@babel/template/node_modules/@babel/types": {
|
||||||
"version": "7.24.0",
|
"version": "7.24.5",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz",
|
||||||
"integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
|
"integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/helper-string-parser": "^7.23.4",
|
"@babel/helper-string-parser": "^7.24.1",
|
||||||
"@babel/helper-validator-identifier": "^7.22.20",
|
"@babel/helper-validator-identifier": "^7.24.5",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -947,12 +947,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/traverse/node_modules/@babel/generator": {
|
"node_modules/@babel/traverse/node_modules/@babel/generator": {
|
||||||
"version": "7.24.4",
|
"version": "7.24.5",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz",
|
||||||
"integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==",
|
"integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/types": "^7.24.0",
|
"@babel/types": "^7.24.5",
|
||||||
"@jridgewell/gen-mapping": "^0.3.5",
|
"@jridgewell/gen-mapping": "^0.3.5",
|
||||||
"@jridgewell/trace-mapping": "^0.3.25",
|
"@jridgewell/trace-mapping": "^0.3.25",
|
||||||
"jsesc": "^2.5.1"
|
"jsesc": "^2.5.1"
|
||||||
@ -962,13 +962,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/traverse/node_modules/@babel/types": {
|
"node_modules/@babel/traverse/node_modules/@babel/types": {
|
||||||
"version": "7.24.0",
|
"version": "7.24.5",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz",
|
||||||
"integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
|
"integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/helper-string-parser": "^7.23.4",
|
"@babel/helper-string-parser": "^7.24.1",
|
||||||
"@babel/helper-validator-identifier": "^7.22.20",
|
"@babel/helper-validator-identifier": "^7.24.5",
|
||||||
"to-fast-properties": "^2.0.0"
|
"to-fast-properties": "^2.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -1170,22 +1170,22 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@balena/lint/node_modules/glob": {
|
"node_modules/@balena/lint/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -1207,9 +1207,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@balena/lint/node_modules/minipass": {
|
"node_modules/@balena/lint/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -1901,9 +1901,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@oclif/core": {
|
"node_modules/@oclif/core": {
|
||||||
"version": "3.26.4",
|
"version": "3.26.6",
|
||||||
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.4.tgz",
|
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.6.tgz",
|
||||||
"integrity": "sha512-ntfo2ut7enNtAn/jB/dryMUPBM2Fh8Fydmi3k/Ybo6lCGU/hmsPFkBRjCEJAQMyNkK2yVZARaWogdOrcVgFz+w==",
|
"integrity": "sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/cli-progress": "^3.11.5",
|
"@types/cli-progress": "^3.11.5",
|
||||||
"ansi-escapes": "^4.3.2",
|
"ansi-escapes": "^4.3.2",
|
||||||
@ -3946,9 +3946,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "20.12.7",
|
"version": "20.12.12",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz",
|
||||||
"integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==",
|
"integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~5.26.4"
|
"undici-types": "~5.26.4"
|
||||||
}
|
}
|
||||||
@ -5472,21 +5472,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/balena-image-manager/node_modules/glob": {
|
"node_modules/balena-image-manager/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -5507,17 +5507,17 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/balena-image-manager/node_modules/minipass": {
|
"node_modules/balena-image-manager/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/balena-image-manager/node_modules/rimraf": {
|
"node_modules/balena-image-manager/node_modules/rimraf": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.7",
|
||||||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz",
|
||||||
"integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==",
|
"integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"glob": "^10.3.7"
|
"glob": "^10.3.7"
|
||||||
},
|
},
|
||||||
@ -5525,7 +5525,7 @@
|
|||||||
"rimraf": "dist/esm/bin.mjs"
|
"rimraf": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14"
|
"node": ">=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -5636,9 +5636,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/balena-sdk/node_modules/@types/node": {
|
"node_modules/balena-sdk/node_modules/@types/node": {
|
||||||
"version": "18.19.31",
|
"version": "18.19.33",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.31.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz",
|
||||||
"integrity": "sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==",
|
"integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~5.26.4"
|
"undici-types": "~5.26.4"
|
||||||
}
|
}
|
||||||
@ -9098,21 +9098,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/etcher-sdk/node_modules/glob": {
|
"node_modules/etcher-sdk/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -9133,9 +9133,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/etcher-sdk/node_modules/minipass": {
|
"node_modules/etcher-sdk/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
}
|
}
|
||||||
@ -13482,9 +13482,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/@npmcli/fs": {
|
"node_modules/make-fetch-happen/node_modules/@npmcli/fs": {
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz",
|
||||||
"integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
|
"integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"semver": "^7.3.5"
|
"semver": "^7.3.5"
|
||||||
@ -13526,9 +13526,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/cacache/node_modules/minipass": {
|
"node_modules/make-fetch-happen/node_modules/cacache/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -13547,40 +13547,40 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/fs-minipass/node_modules/minipass": {
|
"node_modules/make-fetch-happen/node_modules/fs-minipass/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/glob": {
|
"node_modules/make-fetch-happen/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/glob/node_modules/minipass": {
|
"node_modules/make-fetch-happen/node_modules/glob/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -13620,9 +13620,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/minipass-fetch": {
|
"node_modules/make-fetch-happen/node_modules/minipass-fetch": {
|
||||||
"version": "3.0.4",
|
"version": "3.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz",
|
||||||
"integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
|
"integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minipass": "^7.0.3",
|
"minipass": "^7.0.3",
|
||||||
@ -13637,18 +13637,18 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/minipass-fetch/node_modules/minipass": {
|
"node_modules/make-fetch-happen/node_modules/minipass-fetch/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/ssri": {
|
"node_modules/make-fetch-happen/node_modules/ssri": {
|
||||||
"version": "10.0.5",
|
"version": "10.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz",
|
||||||
"integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
|
"integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minipass": "^7.0.3"
|
"minipass": "^7.0.3"
|
||||||
@ -13658,9 +13658,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/make-fetch-happen/node_modules/ssri/node_modules/minipass": {
|
"node_modules/make-fetch-happen/node_modules/ssri/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -16816,15 +16816,15 @@
|
|||||||
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
||||||
},
|
},
|
||||||
"node_modules/path-scurry": {
|
"node_modules/path-scurry": {
|
||||||
"version": "1.10.2",
|
"version": "1.11.1",
|
||||||
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz",
|
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
|
||||||
"integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==",
|
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lru-cache": "^10.2.0",
|
"lru-cache": "^10.2.0",
|
||||||
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -16839,9 +16839,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/path-scurry/node_modules/minipass": {
|
"node_modules/path-scurry/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
}
|
}
|
||||||
@ -17896,22 +17896,22 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/read-package-json/node_modules/glob": {
|
"node_modules/read-package-json/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
@ -17930,9 +17930,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/read-package-json/node_modules/json-parse-even-better-errors": {
|
"node_modules/read-package-json/node_modules/json-parse-even-better-errors": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
|
||||||
"integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==",
|
"integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||||
@ -17963,9 +17963,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/read-package-json/node_modules/minipass": {
|
"node_modules/read-package-json/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -19380,12 +19380,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/semver": {
|
"node_modules/semver": {
|
||||||
"version": "7.6.0",
|
"version": "7.6.2",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
|
||||||
"integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
|
"integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
|
||||||
"dependencies": {
|
|
||||||
"lru-cache": "^6.0.0"
|
|
||||||
},
|
|
||||||
"bin": {
|
"bin": {
|
||||||
"semver": "bin/semver.js"
|
"semver": "bin/semver.js"
|
||||||
},
|
},
|
||||||
@ -23096,9 +23093,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/@npmcli/fs": {
|
"node_modules/yeoman-generator/node_modules/@npmcli/fs": {
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz",
|
||||||
"integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
|
"integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"semver": "^7.3.5"
|
"semver": "^7.3.5"
|
||||||
@ -23260,15 +23257,6 @@
|
|||||||
"balanced-match": "^1.0.0"
|
"balanced-match": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/builtins": {
|
|
||||||
"version": "5.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz",
|
|
||||||
"integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==",
|
|
||||||
"dev": true,
|
|
||||||
"dependencies": {
|
|
||||||
"semver": "^7.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/yeoman-generator/node_modules/cacache": {
|
"node_modules/yeoman-generator/node_modules/cacache": {
|
||||||
"version": "17.1.4",
|
"version": "17.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz",
|
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz",
|
||||||
@ -23293,9 +23281,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/cacache/node_modules/minipass": {
|
"node_modules/yeoman-generator/node_modules/cacache/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -23389,9 +23377,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/fs-minipass/node_modules/minipass": {
|
"node_modules/yeoman-generator/node_modules/fs-minipass/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -23429,31 +23417,31 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/glob": {
|
"node_modules/yeoman-generator/node_modules/glob": {
|
||||||
"version": "10.3.12",
|
"version": "10.3.15",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz",
|
||||||
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
|
"integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.3.6",
|
"jackspeak": "^2.3.6",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^7.0.4",
|
"minipass": "^7.0.4",
|
||||||
"path-scurry": "^1.10.2"
|
"path-scurry": "^1.11.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/esm/bin.mjs"
|
"glob": "dist/esm/bin.mjs"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/isaacs"
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/glob/node_modules/minipass": {
|
"node_modules/yeoman-generator/node_modules/glob/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -23481,9 +23469,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/ignore-walk": {
|
"node_modules/yeoman-generator/node_modules/ignore-walk": {
|
||||||
"version": "6.0.4",
|
"version": "6.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz",
|
||||||
"integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==",
|
"integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minimatch": "^9.0.0"
|
"minimatch": "^9.0.0"
|
||||||
@ -23505,9 +23493,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/json-parse-even-better-errors": {
|
"node_modules/yeoman-generator/node_modules/json-parse-even-better-errors": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
|
||||||
"integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==",
|
"integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||||
@ -23547,9 +23535,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/minipass-fetch": {
|
"node_modules/yeoman-generator/node_modules/minipass-fetch": {
|
||||||
"version": "3.0.4",
|
"version": "3.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz",
|
||||||
"integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
|
"integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minipass": "^7.0.3",
|
"minipass": "^7.0.3",
|
||||||
@ -23564,9 +23552,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/minipass-fetch/node_modules/minipass": {
|
"node_modules/yeoman-generator/node_modules/minipass-fetch/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -23841,9 +23829,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/npm-bundled": {
|
"node_modules/yeoman-generator/node_modules/npm-bundled": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz",
|
||||||
"integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
|
"integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"npm-normalize-package-bin": "^3.0.0"
|
"npm-normalize-package-bin": "^3.0.0"
|
||||||
@ -24100,9 +24088,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/ssri": {
|
"node_modules/yeoman-generator/node_modules/ssri": {
|
||||||
"version": "10.0.5",
|
"version": "10.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz",
|
||||||
"integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
|
"integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minipass": "^7.0.3"
|
"minipass": "^7.0.3"
|
||||||
@ -24112,9 +24100,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/ssri/node_modules/minipass": {
|
"node_modules/yeoman-generator/node_modules/ssri/node_modules/minipass": {
|
||||||
"version": "7.0.4",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz",
|
||||||
"integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
|
"integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16 || 14 >=14.17"
|
"node": ">=16 || 14 >=14.17"
|
||||||
@ -24157,13 +24145,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yeoman-generator/node_modules/validate-npm-package-name": {
|
"node_modules/yeoman-generator/node_modules/validate-npm-package-name": {
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",
|
||||||
"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
|
"integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
|
||||||
"builtins": "^5.0.0"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ const standalonePath = path.resolve(__dirname, '..', 'build-bin', balenaExe);
|
|||||||
export interface TestOutput {
|
export interface TestOutput {
|
||||||
err: string[]; // stderr
|
err: string[]; // stderr
|
||||||
out: string[]; // stdout
|
out: string[]; // stdout
|
||||||
exitCode?: number; // process.exitCode
|
exitCode?: string | number; // process.exitCode
|
||||||
}
|
}
|
||||||
|
|
||||||
function matchesNodeEngineVersionWarn(msg: string) {
|
function matchesNodeEngineVersionWarn(msg: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user