netlify-cli 17.1.0 → 17.2.1
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 -1
- package/npm-shrinkwrap.json +2369 -1011
- package/package.json +4 -3
- 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/src/utils/run-build.mjs +7 -3
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ Manage netlify functions
|
|
|
145
145
|
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
|
|
146
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 |
|
|
147
147
|
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
|
|
148
|
-
| [`functions:serve`](/docs/commands/functions.md#functionsserve) |
|
|
148
|
+
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |
|
|
149
149
|
|
|
150
150
|
|
|
151
151
|
### [init](/docs/commands/init.md)
|