netlify-cli 14.3.0 → 15.0.0-rc.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 +0 -16
- package/npm-shrinkwrap.json +2233 -3087
- package/package.json +7 -8
- package/src/commands/build/build.mjs +1 -24
- package/src/commands/dev/dev.mjs +1 -26
- package/src/commands/main.mjs +0 -2
- package/src/commands/serve/serve.mjs +1 -1
- package/src/lib/functions/server.mjs +1 -10
- package/src/utils/dev.mjs +0 -22
- package/src/commands/graph/graph-config-write.mjs +0 -56
- package/src/commands/graph/graph-edit.mjs +0 -104
- package/src/commands/graph/graph-handler.mjs +0 -102
- package/src/commands/graph/graph-init.mjs +0 -163
- package/src/commands/graph/graph-library.mjs +0 -88
- package/src/commands/graph/graph-operations.mjs +0 -116
- package/src/commands/graph/graph-pull.mjs +0 -168
- package/src/commands/graph/graph.mjs +0 -45
- package/src/commands/graph/index.mjs +0 -1
- package/src/lib/one-graph/cli-client.mjs +0 -1392
- package/src/lib/one-graph/cli-netlify-graph.mjs +0 -1033
- package/src/utils/graph.mjs +0 -170
package/README.md
CHANGED
|
@@ -27,7 +27,6 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
27
27
|
- [dev](#dev)
|
|
28
28
|
- [env](#env)
|
|
29
29
|
- [functions](#functions)
|
|
30
|
-
- [graph](#graph)
|
|
31
30
|
- [init](#init)
|
|
32
31
|
- [link](#link)
|
|
33
32
|
- [lm](#lm)
|
|
@@ -163,21 +162,6 @@ Manage netlify functions
|
|
|
163
162
|
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | (Beta) Serve functions locally |
|
|
164
163
|
|
|
165
164
|
|
|
166
|
-
### [graph](/docs/commands/graph.md)
|
|
167
|
-
|
|
168
|
-
(Deprecated) Control the Netlify Graph functions for the current site
|
|
169
|
-
|
|
170
|
-
| Subcommand | description |
|
|
171
|
-
|:--------------------------- |:-----|
|
|
172
|
-
| [`graph:config:write`](/docs/commands/graph.md#graphconfigwrite) | Write a .graphqlrc.json file to the current directory for use with local tooling (e.g. the graphql extension for vscode) |
|
|
173
|
-
| [`graph:edit`](/docs/commands/graph.md#graphedit) | Launch the browser to edit your local graph functions from Netlify |
|
|
174
|
-
| [`graph:handler`](/docs/commands/graph.md#graphhandler) | Generate a handler for a Graph operation given its name. See `graph:operations` for a list of operations. |
|
|
175
|
-
| [`graph:init`](/docs/commands/graph.md#graphinit) | Initialize all the resources for Netlify Graph |
|
|
176
|
-
| [`graph:library`](/docs/commands/graph.md#graphlibrary) | Generate the Graph function library |
|
|
177
|
-
| [`graph:operations`](/docs/commands/graph.md#graphoperations) | List all of the locally available operations |
|
|
178
|
-
| [`graph:pull`](/docs/commands/graph.md#graphpull) | Pull your remote Netlify Graph schema locally, and process pending Graph edit events |
|
|
179
|
-
|
|
180
|
-
|
|
181
165
|
### [init](/docs/commands/init.md)
|
|
182
166
|
|
|
183
167
|
Configure continuous deployment for a new or existing site. To create a new site without continuous deployment, use `netlify sites:create`
|