netlify-cli 8.4.1 → 8.6.0
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 +1 -0
- package/npm-shrinkwrap.json +1291 -752
- package/package.json +8 -6
- package/src/commands/env/env-list.js +42 -8
- package/src/commands/env/env-migrate.js +108 -0
- package/src/commands/env/env.js +3 -0
- package/src/functions-templates/javascript/stripe-charge/package-lock.json +6 -6
- package/src/functions-templates/javascript/stripe-subscription/package-lock.json +6 -6
- package/src/functions-templates/typescript/hello-world/package-lock.json +7 -7
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ Local dev server
|
|
|
134
134
|
| [`env:get`](/docs/commands/env.md#envget) | Get resolved value of specified environment variable (includes netlify.toml) |
|
|
135
135
|
| [`env:import`](/docs/commands/env.md#envimport) | Import and set environment variables from .env file |
|
|
136
136
|
| [`env:list`](/docs/commands/env.md#envlist) | Lists resolved environment variables for site (includes netlify.toml) |
|
|
137
|
+
| [`env:migrate`](/docs/commands/env.md#envmigrate) | Migrate environment variables from one site to another |
|
|
137
138
|
| [`env:set`](/docs/commands/env.md#envset) | Set value of environment variable |
|
|
138
139
|
| [`env:unset`](/docs/commands/env.md#envunset) | Unset an environment variable which removes it from the UI |
|
|
139
140
|
|