netlify-cli 17.0.1 → 17.2.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 -15
- package/npm-shrinkwrap.json +2470 -1223
- package/package.json +5 -4
- package/src/commands/addons/addons-auth.mjs +1 -1
- package/src/commands/addons/addons-config.mjs +1 -1
- package/src/commands/addons/addons-create.mjs +1 -1
- package/src/commands/addons/addons-delete.mjs +1 -1
- package/src/commands/addons/addons-list.mjs +1 -1
- package/src/commands/addons/addons.mjs +2 -2
- package/src/commands/dev/dev.mjs +1 -0
- package/src/commands/functions/functions-serve.mjs +1 -1
- package/src/commands/lm/lm-info.mjs +1 -1
- package/src/commands/lm/lm-setup.mjs +1 -1
- package/src/lib/edge-functions/proxy.mjs +7 -17
- package/src/lib/edge-functions/registry.mjs +179 -110
- package/src/lib/images/proxy.mjs +115 -0
- package/src/utils/lm/install.mjs +1 -1
- package/src/utils/proxy-server.mjs +3 -0
- package/src/utils/proxy.mjs +43 -6
package/README.md
CHANGED
|
@@ -19,7 +19,6 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
19
19
|
- [Usage](#usage)
|
|
20
20
|
- [Documentation](#documentation)
|
|
21
21
|
- [Commands](#commands)
|
|
22
|
-
- [addons](#addons)
|
|
23
22
|
- [api](#api)
|
|
24
23
|
- [build](#build)
|
|
25
24
|
- [completion](#completion)
|
|
@@ -92,19 +91,6 @@ For a full command reference, see the list below, or visit [cli.netlify.com](htt
|
|
|
92
91
|
## Commands
|
|
93
92
|
|
|
94
93
|
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_LIST) -->
|
|
95
|
-
### [addons](/docs/commands/addons.md)
|
|
96
|
-
|
|
97
|
-
(Beta) Manage Netlify Add-ons
|
|
98
|
-
|
|
99
|
-
| Subcommand | description |
|
|
100
|
-
|:--------------------------- |:-----|
|
|
101
|
-
| [`addons:auth`](/docs/commands/addons.md#addonsauth) | Login to add-on provider |
|
|
102
|
-
| [`addons:config`](/docs/commands/addons.md#addonsconfig) | Configure add-on settings |
|
|
103
|
-
| [`addons:create`](/docs/commands/addons.md#addonscreate) | Add an add-on extension to your site |
|
|
104
|
-
| [`addons:delete`](/docs/commands/addons.md#addonsdelete) | Remove an add-on extension to your site |
|
|
105
|
-
| [`addons:list`](/docs/commands/addons.md#addonslist) | List currently installed add-ons for site |
|
|
106
|
-
|
|
107
|
-
|
|
108
94
|
### [api](/docs/commands/api.md)
|
|
109
95
|
|
|
110
96
|
Run any Netlify API method
|
|
@@ -159,7 +145,7 @@ Manage netlify functions
|
|
|
159
145
|
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
|
|
160
146
|
| [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
|
|
161
147
|
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
|
|
162
|
-
| [`functions:serve`](/docs/commands/functions.md#functionsserve) |
|
|
148
|
+
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |
|
|
163
149
|
|
|
164
150
|
|
|
165
151
|
### [init](/docs/commands/init.md)
|