netlify-cli 16.2.0 → 16.3.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 +0 -12
- package/npm-shrinkwrap.json +2211 -668
- package/package.json +5 -5
- package/src/commands/lm/lm-info.mjs +1 -1
- package/src/commands/lm/lm-install.mjs +1 -1
- package/src/commands/lm/lm-setup.mjs +1 -1
- package/src/commands/lm/lm.mjs +4 -2
- package/src/lib/edge-functions/bootstrap.mjs +1 -1
- package/src/lib/edge-functions/headers.mjs +3 -0
- package/src/lib/edge-functions/proxy.mjs +6 -10
- package/src/lib/edge-functions/registry.mjs +6 -1
- package/src/lib/functions/netlify-function.mjs +12 -4
- package/src/lib/functions/registry.mjs +4 -4
- package/src/lib/functions/server.mjs +5 -2
- package/src/utils/headers.mjs +1 -0
- package/src/utils/proxy.mjs +9 -5
package/README.md
CHANGED
|
@@ -29,7 +29,6 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
29
29
|
- [functions](#functions)
|
|
30
30
|
- [init](#init)
|
|
31
31
|
- [link](#link)
|
|
32
|
-
- [lm](#lm)
|
|
33
32
|
- [login](#login)
|
|
34
33
|
- [open](#open)
|
|
35
34
|
- [recipes](#recipes)
|
|
@@ -170,17 +169,6 @@ Configure continuous deployment for a new or existing site. To create a new site
|
|
|
170
169
|
|
|
171
170
|
Link a local repo or project folder to an existing site on Netlify
|
|
172
171
|
|
|
173
|
-
### [lm](/docs/commands/lm.md)
|
|
174
|
-
|
|
175
|
-
Handle Netlify Large Media operations
|
|
176
|
-
|
|
177
|
-
| Subcommand | description |
|
|
178
|
-
|:--------------------------- |:-----|
|
|
179
|
-
| [`lm:info`](/docs/commands/lm.md#lminfo) | Show large media requirements information. |
|
|
180
|
-
| [`lm:install`](/docs/commands/lm.md#lminstall) | Configures your computer to use Netlify Large Media |
|
|
181
|
-
| [`lm:setup`](/docs/commands/lm.md#lmsetup) | Configures your site to use Netlify Large Media |
|
|
182
|
-
|
|
183
|
-
|
|
184
172
|
### [login](/docs/commands/login.md)
|
|
185
173
|
|
|
186
174
|
Login to your Netlify account
|