netlify-cli 16.8.0 → 16.9.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 +10 -0
- package/npm-shrinkwrap.json +6423 -263
- package/package.json +3 -1
- package/src/commands/build/build.mjs +4 -2
- package/src/commands/deploy/deploy.mjs +11 -3
- package/src/commands/integration/deploy.mjs +397 -0
- package/src/commands/integration/index.mjs +25 -0
- package/src/commands/main.mjs +2 -0
- package/src/lib/functions/registry.mjs +31 -4
- package/src/lib/functions/server.mjs +15 -0
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
28
28
|
- [env](#env)
|
|
29
29
|
- [functions](#functions)
|
|
30
30
|
- [init](#init)
|
|
31
|
+
- [integration](#integration)
|
|
31
32
|
- [link](#link)
|
|
32
33
|
- [login](#login)
|
|
33
34
|
- [open](#open)
|
|
@@ -165,6 +166,15 @@ Manage netlify functions
|
|
|
165
166
|
|
|
166
167
|
Configure continuous deployment for a new or existing site. To create a new site without continuous deployment, use `netlify sites:create`
|
|
167
168
|
|
|
169
|
+
### [integration](/docs/commands/integration.md)
|
|
170
|
+
|
|
171
|
+
Manage Netlify Integrations built with the Netlify SDK
|
|
172
|
+
|
|
173
|
+
| Subcommand | description |
|
|
174
|
+
|:--------------------------- |:-----|
|
|
175
|
+
| [`integration:deploy`](/docs/commands/integration.md#integrationdeploy) | Register, build, and deploy a private integration on Netlify |
|
|
176
|
+
|
|
177
|
+
|
|
168
178
|
### [link](/docs/commands/link.md)
|
|
169
179
|
|
|
170
180
|
Link a local repo or project folder to an existing site on Netlify
|