netlify-cli 8.12.0 → 8.13.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 +11 -0
- package/npm-shrinkwrap.json +612 -1243
- package/package.json +5 -2
- package/src/commands/dev/dev.js +31 -6
- package/src/commands/graph/graph-edit.js +91 -0
- package/src/commands/graph/graph-pull.js +95 -0
- package/src/commands/graph/graph.js +30 -0
- package/src/commands/graph/index.js +5 -0
- package/src/commands/main.js +2 -0
- package/src/lib/one-graph/cli-client.js +278 -0
- package/src/lib/one-graph/cli-netlify-graph.js +278 -0
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
25
25
|
- [dev](#dev)
|
|
26
26
|
- [env](#env)
|
|
27
27
|
- [functions](#functions)
|
|
28
|
+
- [graph](#graph)
|
|
28
29
|
- [init](#init)
|
|
29
30
|
- [link](#link)
|
|
30
31
|
- [lm](#lm)
|
|
@@ -152,6 +153,16 @@ Manage netlify functions
|
|
|
152
153
|
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | (Beta) Serve functions locally |
|
|
153
154
|
|
|
154
155
|
|
|
156
|
+
### [graph](/docs/commands/graph.md)
|
|
157
|
+
|
|
158
|
+
(Beta) Control the Netlify Graph functions for the current site
|
|
159
|
+
|
|
160
|
+
| Subcommand | description |
|
|
161
|
+
|:--------------------------- |:-----|
|
|
162
|
+
| [`graph:edit`](/docs/commands/graph.md#graphedit) | Launch the browser to edit your local graph functions from Netlify |
|
|
163
|
+
| [`graph:pull`](/docs/commands/graph.md#graphpull) | Pull down your local Netlify Graph schema, and process pending Graph edit events |
|
|
164
|
+
|
|
165
|
+
|
|
155
166
|
### [init](/docs/commands/init.md)
|
|
156
167
|
|
|
157
168
|
Configure continuous deployment for a new or existing site. To create a new site without continuous deployment, use `netlify sites:create`
|