netlify-cli 10.14.0 → 10.17.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 -1
- package/npm-shrinkwrap.json +856 -1603
- package/package.json +7 -6
- package/src/commands/dev/dev.js +31 -4
- package/src/commands/env/env-get.js +31 -4
- package/src/commands/env/env-list.js +59 -16
- package/src/commands/graph/graph-edit.js +4 -2
- package/src/commands/graph/graph-handler.js +41 -63
- package/src/commands/graph/graph-init.js +5 -1
- package/src/commands/graph/graph-library.js +30 -8
- package/src/commands/graph/graph-operations.js +6 -1
- package/src/commands/graph/graph-pull.js +79 -23
- package/src/commands/init/init.js +1 -1
- package/src/functions-templates/go/hello-world/go.mod +1 -1
- package/src/lib/edge-functions/proxy.js +4 -0
- package/src/lib/edge-functions/registry.js +29 -3
- package/src/lib/one-graph/cli-client.js +723 -118
- package/src/lib/one-graph/cli-netlify-graph.js +519 -50
- package/src/utils/dev.js +2 -2
- package/src/utils/env/index.js +156 -1
- package/src/utils/proxy.js +2 -0
package/README.md
CHANGED
|
@@ -165,7 +165,7 @@ Manage netlify functions
|
|
|
165
165
|
| [`graph:init`](/docs/commands/graph.md#graphinit) | Initialize all the resources for Netlify Graph |
|
|
166
166
|
| [`graph:library`](/docs/commands/graph.md#graphlibrary) | Generate the Graph function library |
|
|
167
167
|
| [`graph:operations`](/docs/commands/graph.md#graphoperations) | List all of the locally available operations |
|
|
168
|
-
| [`graph:pull`](/docs/commands/graph.md#graphpull) | Pull
|
|
168
|
+
| [`graph:pull`](/docs/commands/graph.md#graphpull) | Pull your remote Netlify Graph schema locally, and process pending Graph edit events |
|
|
169
169
|
|
|
170
170
|
|
|
171
171
|
### [init](/docs/commands/init.md)
|