netlify-cli 8.17.3 → 8.19.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 +4 -0
- package/npm-shrinkwrap.json +528 -60
- package/package.json +8 -7
- package/src/commands/graph/graph-edit.js +3 -2
- package/src/commands/graph/graph-handler.js +53 -0
- package/src/commands/graph/graph-library.js +61 -0
- package/src/commands/graph/graph-operations.js +113 -0
- package/src/commands/graph/graph-pull.js +3 -2
- package/src/commands/graph/graph.js +6 -0
- package/src/commands/sites/sites-create-template.js +212 -0
- package/src/commands/sites/sites-create.js +48 -41
- package/src/commands/sites/sites.js +2 -0
- package/src/lib/one-graph/cli-client.js +40 -24
- package/src/lib/one-graph/cli-netlify-graph.js +79 -32
- package/src/utils/command-helpers.js +1 -2
- package/src/utils/sites/utils.js +30 -0
package/README.md
CHANGED
|
@@ -160,6 +160,9 @@ Manage netlify functions
|
|
|
160
160
|
| Subcommand | description |
|
|
161
161
|
|:--------------------------- |:-----|
|
|
162
162
|
| [`graph:edit`](/docs/commands/graph.md#graphedit) | Launch the browser to edit your local graph functions from Netlify |
|
|
163
|
+
| [`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. |
|
|
164
|
+
| [`graph:library`](/docs/commands/graph.md#graphlibrary) | Generate the Graph function library |
|
|
165
|
+
| [`graph:operations`](/docs/commands/graph.md#graphoperations) | List all of the locally available operations |
|
|
163
166
|
| [`graph:pull`](/docs/commands/graph.md#graphpull) | Pull down your local Netlify Graph schema, and process pending Graph edit events |
|
|
164
167
|
|
|
165
168
|
|
|
@@ -203,6 +206,7 @@ Handle various site operations
|
|
|
203
206
|
| Subcommand | description |
|
|
204
207
|
|:--------------------------- |:-----|
|
|
205
208
|
| [`sites:create`](/docs/commands/sites.md#sitescreate) | Create an empty site (advanced) |
|
|
209
|
+
| [`sites:create-template`](/docs/commands/sites.md#sitescreate-template) | (Beta) Create a site from a starter template |
|
|
206
210
|
| [`sites:delete`](/docs/commands/sites.md#sitesdelete) | Delete a site |
|
|
207
211
|
| [`sites:list`](/docs/commands/sites.md#siteslist) | List all sites you have access to |
|
|
208
212
|
|