netlify-cli 16.9.2 → 17.0.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 +5 -5
- package/npm-shrinkwrap.json +244 -6455
- package/package.json +5 -6
- package/src/commands/build/build.mjs +1 -1
- package/src/commands/completion/completion.mjs +1 -1
- package/src/commands/dev/dev.mjs +9 -0
- package/src/commands/integration/deploy.mjs +59 -9
- package/src/commands/recipes/recipes-list.mjs +1 -1
- package/src/commands/recipes/recipes.mjs +1 -1
- package/src/commands/serve/serve.mjs +1 -1
- package/src/lib/blobs/blobs.mjs +50 -0
- package/src/lib/edge-functions/bootstrap.mjs +1 -1
- package/src/lib/edge-functions/headers.mjs +1 -0
- package/src/lib/edge-functions/proxy.mjs +8 -0
- package/src/lib/functions/netlify-function.mjs +18 -1
- package/src/lib/functions/registry.mjs +9 -0
- package/src/lib/functions/runtimes/js/index.mjs +2 -1
- package/src/lib/functions/runtimes/js/worker.mjs +7 -1
- package/src/lib/functions/server.mjs +16 -2
- package/src/utils/deploy/deploy-site.mjs +5 -15
- package/src/utils/proxy-server.mjs +3 -0
- package/src/utils/proxy.mjs +2 -0
package/README.md
CHANGED
|
@@ -111,11 +111,11 @@ Run any Netlify API method
|
|
|
111
111
|
|
|
112
112
|
### [build](/docs/commands/build.md)
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
Build on your local machine
|
|
115
115
|
|
|
116
116
|
### [completion](/docs/commands/completion.md)
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
Generate shell completion script
|
|
119
119
|
|
|
120
120
|
| Subcommand | description |
|
|
121
121
|
|:--------------------------- |:-----|
|
|
@@ -195,16 +195,16 @@ Open settings for the site linked to the current folder
|
|
|
195
195
|
|
|
196
196
|
### [recipes](/docs/commands/recipes.md)
|
|
197
197
|
|
|
198
|
-
|
|
198
|
+
Create and modify files in a project using pre-defined recipes
|
|
199
199
|
|
|
200
200
|
| Subcommand | description |
|
|
201
201
|
|:--------------------------- |:-----|
|
|
202
|
-
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) |
|
|
202
|
+
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |
|
|
203
203
|
|
|
204
204
|
|
|
205
205
|
### [serve](/docs/commands/serve.md)
|
|
206
206
|
|
|
207
|
-
|
|
207
|
+
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
|
|
208
208
|
|
|
209
209
|
### [sites](/docs/commands/sites.md)
|
|
210
210
|
|