netlify-cli 17.3.1 → 17.4.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 +3 -139
- package/npm-shrinkwrap.json +82 -82
- package/package.json +16 -15
- package/src/commands/addons/addons-auth.mjs +27 -30
- package/src/commands/addons/addons-config.mjs +145 -154
- package/src/commands/addons/addons-create.mjs +94 -108
- package/src/commands/addons/addons-delete.mjs +36 -41
- package/src/commands/addons/addons-list.mjs +38 -42
- package/src/commands/addons/addons.mjs +26 -28
- package/src/commands/addons/index.mjs +1 -1
- package/src/commands/api/api.mjs +45 -53
- package/src/commands/api/index.mjs +1 -1
- package/src/commands/base-command.mjs +597 -684
- package/src/commands/blobs/blobs-delete.mjs +35 -0
- package/src/commands/blobs/blobs-get.mjs +44 -0
- package/src/commands/blobs/blobs-list.mjs +48 -0
- package/src/commands/blobs/blobs-set.mjs +54 -0
- package/src/commands/blobs/blobs.mjs +32 -0
- package/src/commands/blobs/index.mjs +1 -0
- package/src/commands/build/build.mjs +55 -67
- package/src/commands/build/index.mjs +1 -1
- package/src/commands/completion/completion.mjs +41 -46
- package/src/commands/completion/index.mjs +1 -1
- package/src/commands/deploy/deploy.mjs +675 -710
- package/src/commands/deploy/index.mjs +1 -1
- package/src/commands/dev/dev-exec.mjs +20 -32
- package/src/commands/dev/dev.mjs +217 -302
- package/src/commands/dev/index.mjs +1 -1
- package/src/commands/dev/types.d.ts +30 -0
- package/src/commands/env/env-clone.mjs +157 -184
- package/src/commands/env/env-get.mjs +49 -68
- package/src/commands/env/env-import.mjs +100 -119
- package/src/commands/env/env-list.mjs +104 -129
- package/src/commands/env/env-set.mjs +160 -185
- package/src/commands/env/env-unset.mjs +104 -122
- package/src/commands/env/env.mjs +28 -30
- package/src/commands/env/index.mjs +1 -1
- package/src/commands/functions/functions-build.mjs +29 -41
- package/src/commands/functions/functions-create.mjs +533 -601
- package/src/commands/functions/functions-invoke.mjs +193 -216
- package/src/commands/functions/functions-list.mjs +45 -55
- package/src/commands/functions/functions-serve.mjs +51 -61
- package/src/commands/functions/functions.mjs +26 -32
- package/src/commands/functions/index.mjs +1 -1
- package/src/commands/index.mjs +2 -2
- package/src/commands/init/index.mjs +1 -1
- package/src/commands/init/init.mjs +138 -167
- package/src/commands/integration/deploy.mjs +337 -399
- package/src/commands/integration/index.mjs +12 -13
- package/src/commands/link/index.mjs +1 -1
- package/src/commands/link/link.mjs +298 -317
- package/src/commands/lm/index.mjs +1 -1
- package/src/commands/lm/lm-info.mjs +23 -31
- package/src/commands/lm/lm-install.mjs +13 -17
- package/src/commands/lm/lm-setup.mjs +80 -84
- package/src/commands/lm/lm-uninstall.mjs +7 -12
- package/src/commands/lm/lm.mjs +18 -22
- package/src/commands/login/index.mjs +1 -1
- package/src/commands/login/login.mjs +35 -41
- package/src/commands/logout/index.mjs +1 -1
- package/src/commands/logout/logout.mjs +25 -31
- package/src/commands/main.mjs +166 -201
- package/src/commands/open/index.mjs +1 -1
- package/src/commands/open/open-admin.mjs +15 -18
- package/src/commands/open/open-site.mjs +16 -19
- package/src/commands/open/open.mjs +24 -27
- package/src/commands/recipes/common.mjs +23 -34
- package/src/commands/recipes/index.mjs +1 -1
- package/src/commands/recipes/recipes-list.mjs +13 -20
- package/src/commands/recipes/recipes.mjs +59 -72
- package/src/commands/serve/index.mjs +1 -1
- package/src/commands/serve/serve.mjs +142 -189
- package/src/commands/sites/index.mjs +2 -2
- package/src/commands/sites/sites-create-template.mjs +214 -236
- package/src/commands/sites/sites-create.mjs +145 -157
- package/src/commands/sites/sites-delete.mjs +75 -81
- package/src/commands/sites/sites-list.mjs +63 -66
- package/src/commands/sites/sites.mjs +18 -20
- package/src/commands/status/index.mjs +1 -1
- package/src/commands/status/status-hooks.mjs +32 -34
- package/src/commands/status/status.mjs +99 -106
- package/src/commands/switch/index.mjs +1 -1
- package/src/commands/switch/switch.mjs +32 -37
- package/src/commands/types.d.ts +31 -0
- package/src/commands/unlink/index.mjs +1 -1
- package/src/commands/unlink/unlink.mjs +23 -29
- package/src/commands/watch/index.mjs +1 -1
- package/src/commands/watch/watch.mjs +91 -105
- package/src/functions-templates/javascript/hello/{{name}}.js +2 -3
- package/src/lib/account.mjs +4 -5
- package/src/lib/api.mjs +22 -20
- package/src/lib/blobs/blobs.mjs +36 -45
- package/src/lib/build.mjs +82 -85
- package/src/lib/completion/constants.mjs +2 -4
- package/src/lib/completion/generate-autocompletion.mjs +33 -36
- package/src/lib/completion/get-autocompletion.mjs +31 -35
- package/src/lib/completion/index.mjs +1 -1
- package/src/lib/completion/script.mjs +12 -19
- package/src/lib/edge-functions/bootstrap.mjs +3 -5
- package/src/lib/edge-functions/consts.mjs +9 -10
- package/src/lib/edge-functions/deploy.mjs +28 -34
- package/src/lib/edge-functions/editor-helper.mjs +29 -42
- package/src/lib/edge-functions/headers.mjs +24 -26
- package/src/lib/edge-functions/internal.mjs +38 -44
- package/src/lib/edge-functions/proxy.mjs +229 -228
- package/src/lib/edge-functions/registry.mjs +473 -574
- package/src/lib/exec-fetcher.mjs +115 -122
- package/src/lib/fs.mjs +28 -27
- package/src/lib/functions/background.mjs +16 -20
- package/src/lib/functions/config.mjs +12 -9
- package/src/lib/functions/form-submissions-handler.mjs +143 -149
- package/src/lib/functions/local-proxy.mjs +40 -44
- package/src/lib/functions/memoized-build.mjs +19 -21
- package/src/lib/functions/netlify-function.mjs +269 -249
- package/src/lib/functions/registry.mjs +509 -568
- package/src/lib/functions/runtimes/go/index.mjs +62 -71
- package/src/lib/functions/runtimes/index.mjs +8 -15
- package/src/lib/functions/runtimes/js/builders/netlify-lambda.mjs +55 -64
- package/src/lib/functions/runtimes/js/builders/zisi.mjs +135 -154
- package/src/lib/functions/runtimes/js/constants.mjs +1 -1
- package/src/lib/functions/runtimes/js/index.mjs +92 -109
- package/src/lib/functions/runtimes/js/worker.mjs +43 -45
- package/src/lib/functions/runtimes/rust/index.mjs +64 -73
- package/src/lib/functions/scheduled.mjs +70 -88
- package/src/lib/functions/server.mjs +269 -327
- package/src/lib/functions/synchronous.mjs +118 -147
- package/src/lib/functions/utils.mjs +38 -46
- package/src/lib/geo-location.mjs +69 -81
- package/src/lib/http-agent.mjs +87 -90
- package/src/lib/images/proxy.mjs +97 -89
- package/src/lib/log.mjs +6 -9
- package/src/lib/path.mjs +2 -1
- package/src/lib/render-error-template.mjs +19 -20
- package/src/lib/settings.mjs +17 -19
- package/src/lib/spinner.mjs +21 -23
- package/src/lib/string.mjs +4 -2
- package/src/recipes/vscode/index.mjs +69 -85
- package/src/recipes/vscode/settings.mjs +53 -58
- package/src/utils/addons/compare.mjs +31 -32
- package/src/utils/addons/diffs/index.mjs +16 -17
- package/src/utils/addons/diffs/options.mjs +99 -101
- package/src/utils/addons/prepare.mjs +100 -97
- package/src/utils/addons/prompts.mjs +73 -76
- package/src/utils/addons/render.mjs +33 -36
- package/src/utils/addons/validation.mjs +19 -15
- package/src/utils/banner.mjs +11 -16
- package/src/utils/build-info.mjs +65 -66
- package/src/utils/command-helpers.mjs +185 -199
- package/src/utils/create-deferred.mjs +9 -12
- package/src/utils/create-stream-promise.mjs +54 -47
- package/src/utils/deploy/constants.mjs +9 -11
- package/src/utils/deploy/deploy-site.mjs +162 -182
- package/src/utils/deploy/hash-config.mjs +21 -21
- package/src/utils/deploy/hash-files.mjs +34 -38
- package/src/utils/deploy/hash-fns.mjs +149 -154
- package/src/utils/deploy/hasher-segments.mjs +58 -52
- package/src/utils/deploy/upload-files.mjs +99 -113
- package/src/utils/deploy/util.mjs +85 -91
- package/src/utils/detect-server-settings.mjs +236 -268
- package/src/utils/dev.mjs +163 -178
- package/src/utils/dot-env.mjs +37 -42
- package/src/utils/env/index.mjs +148 -148
- package/src/utils/execa.mjs +9 -13
- package/src/utils/feature-flags.mjs +6 -5
- package/src/utils/framework-server.mjs +43 -52
- package/src/utils/functions/constants.mjs +1 -1
- package/src/utils/functions/functions.mjs +30 -40
- package/src/utils/functions/get-functions.mjs +28 -29
- package/src/utils/functions/index.mjs +3 -3
- package/src/utils/get-global-config.mjs +33 -36
- package/src/utils/get-package-json.mjs +14 -15
- package/src/utils/get-repo-data.mjs +54 -64
- package/src/utils/get-site.mjs +14 -14
- package/src/utils/gh-auth.mjs +79 -100
- package/src/utils/gitignore.mjs +37 -40
- package/src/utils/headers.mjs +33 -35
- package/src/utils/hooks/requires-site-info.mjs +26 -22
- package/src/utils/init/config-github.mjs +207 -219
- package/src/utils/init/config-manual.mjs +83 -100
- package/src/utils/init/config.mjs +25 -26
- package/src/utils/init/node-version.mjs +23 -30
- package/src/utils/init/plugins.mjs +12 -8
- package/src/utils/init/utils.mjs +152 -172
- package/src/utils/live-tunnel.mjs +118 -141
- package/src/utils/lm/install.mjs +220 -259
- package/src/utils/lm/requirements.mjs +54 -63
- package/src/utils/lm/steps.mjs +31 -31
- package/src/utils/lm/ui.mjs +13 -20
- package/src/utils/open-browser.mjs +31 -32
- package/src/utils/parse-raw-flags.mjs +39 -35
- package/src/utils/proxy-server.mjs +84 -71
- package/src/utils/proxy.mjs +696 -750
- package/src/utils/read-repo-url.mjs +48 -47
- package/src/utils/redirects.mjs +49 -49
- package/src/utils/request-id.mjs +2 -4
- package/src/utils/rules-proxy.mjs +96 -100
- package/src/utils/run-build.mjs +109 -132
- package/src/utils/shell.mjs +99 -106
- package/src/utils/sign-redirect.mjs +14 -14
- package/src/utils/sites/utils.mjs +48 -55
- package/src/utils/state-config.mjs +101 -101
- package/src/utils/static-server.mjs +28 -34
- package/src/utils/telemetry/index.mjs +2 -2
- package/src/utils/telemetry/report-error.mjs +45 -49
- package/src/utils/telemetry/request.mjs +36 -43
- package/src/utils/telemetry/telemetry.mjs +90 -105
- package/src/utils/telemetry/utils.mjs +5 -6
- package/src/utils/telemetry/validation.mjs +55 -53
- package/src/utils/types.d.ts +46 -0
- package/src/utils/validation.mjs +10 -13
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
20
20
|
- [Documentation](#documentation)
|
|
21
21
|
- [Commands](#commands)
|
|
22
22
|
- [api](#api)
|
|
23
|
+
- [blobs](#blobs)
|
|
23
24
|
- [build](#build)
|
|
24
25
|
- [completion](#completion)
|
|
25
26
|
- [deploy](#deploy)
|
|
@@ -47,7 +48,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
|
|
|
47
48
|
|
|
48
49
|
## Installation
|
|
49
50
|
|
|
50
|
-
Netlify CLI requires [Node.js](https://nodejs.org) version 14 or above. To install, run the following command from any
|
|
51
|
+
Netlify CLI requires [Node.js](https://nodejs.org) version 18.14.0 or above. To install, run the following command from any
|
|
51
52
|
directory in your terminal:
|
|
52
53
|
|
|
53
54
|
```bash
|
|
@@ -86,147 +87,10 @@ netlify [command] help
|
|
|
86
87
|
To learn how to log in to Netlify and start deploying sites, visit the
|
|
87
88
|
[documentation on Netlify](https://docs.netlify.com/cli/get-started/).
|
|
88
89
|
|
|
89
|
-
For a full command reference, see the list below, or visit [cli.netlify.com](https://cli.netlify.com/).
|
|
90
90
|
|
|
91
91
|
## Commands
|
|
92
92
|
|
|
93
|
-
|
|
94
|
-
### [api](/docs/commands/api.md)
|
|
95
|
-
|
|
96
|
-
Run any Netlify API method
|
|
97
|
-
|
|
98
|
-
### [build](/docs/commands/build.md)
|
|
99
|
-
|
|
100
|
-
Build on your local machine
|
|
101
|
-
|
|
102
|
-
### [completion](/docs/commands/completion.md)
|
|
103
|
-
|
|
104
|
-
Generate shell completion script
|
|
105
|
-
|
|
106
|
-
| Subcommand | description |
|
|
107
|
-
|:--------------------------- |:-----|
|
|
108
|
-
| [`completion:install`](/docs/commands/completion.md#completioninstall) | Generates completion script for your preferred shell |
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### [deploy](/docs/commands/deploy.md)
|
|
112
|
-
|
|
113
|
-
Create a new deploy from the contents of a folder
|
|
114
|
-
|
|
115
|
-
### [dev](/docs/commands/dev.md)
|
|
116
|
-
|
|
117
|
-
Local dev server
|
|
118
|
-
|
|
119
|
-
| Subcommand | description |
|
|
120
|
-
|:--------------------------- |:-----|
|
|
121
|
-
| [`dev:exec`](/docs/commands/dev.md#devexec) | Exec command |
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
### [env](/docs/commands/env.md)
|
|
125
|
-
|
|
126
|
-
Control environment variables for the current site
|
|
127
|
-
|
|
128
|
-
| Subcommand | description |
|
|
129
|
-
|:--------------------------- |:-----|
|
|
130
|
-
| [`env:clone`](/docs/commands/env.md#envclone) | Clone environment variables from one site to another |
|
|
131
|
-
| [`env:get`](/docs/commands/env.md#envget) | Get resolved value of specified environment variable (includes netlify.toml) |
|
|
132
|
-
| [`env:import`](/docs/commands/env.md#envimport) | Import and set environment variables from .env file |
|
|
133
|
-
| [`env:list`](/docs/commands/env.md#envlist) | Lists resolved environment variables for site (includes netlify.toml) |
|
|
134
|
-
| [`env:set`](/docs/commands/env.md#envset) | Set value of environment variable |
|
|
135
|
-
| [`env:unset`](/docs/commands/env.md#envunset) | Unset an environment variable which removes it from the UI |
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
### [functions](/docs/commands/functions.md)
|
|
139
|
-
|
|
140
|
-
Manage netlify functions
|
|
141
|
-
|
|
142
|
-
| Subcommand | description |
|
|
143
|
-
|:--------------------------- |:-----|
|
|
144
|
-
| [`functions:build`](/docs/commands/functions.md#functionsbuild) | Build functions locally |
|
|
145
|
-
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
|
|
146
|
-
| [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
|
|
147
|
-
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
|
|
148
|
-
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
### [init](/docs/commands/init.md)
|
|
152
|
-
|
|
153
|
-
Configure continuous deployment for a new or existing site. To create a new site without continuous deployment, use `netlify sites:create`
|
|
154
|
-
|
|
155
|
-
### [integration](/docs/commands/integration.md)
|
|
156
|
-
|
|
157
|
-
Manage Netlify Integrations built with the Netlify SDK
|
|
158
|
-
|
|
159
|
-
| Subcommand | description |
|
|
160
|
-
|:--------------------------- |:-----|
|
|
161
|
-
| [`integration:deploy`](/docs/commands/integration.md#integrationdeploy) | Register, build, and deploy a private integration on Netlify |
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### [link](/docs/commands/link.md)
|
|
165
|
-
|
|
166
|
-
Link a local repo or project folder to an existing site on Netlify
|
|
167
|
-
|
|
168
|
-
### [login](/docs/commands/login.md)
|
|
169
|
-
|
|
170
|
-
Login to your Netlify account
|
|
171
|
-
|
|
172
|
-
### [open](/docs/commands/open.md)
|
|
173
|
-
|
|
174
|
-
Open settings for the site linked to the current folder
|
|
175
|
-
|
|
176
|
-
| Subcommand | description |
|
|
177
|
-
|:--------------------------- |:-----|
|
|
178
|
-
| [`open:admin`](/docs/commands/open.md#openadmin) | Opens current site admin UI in Netlify |
|
|
179
|
-
| [`open:site`](/docs/commands/open.md#opensite) | Opens current site url in browser |
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
### [recipes](/docs/commands/recipes.md)
|
|
183
|
-
|
|
184
|
-
Create and modify files in a project using pre-defined recipes
|
|
185
|
-
|
|
186
|
-
| Subcommand | description |
|
|
187
|
-
|:--------------------------- |:-----|
|
|
188
|
-
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
### [serve](/docs/commands/serve.md)
|
|
192
|
-
|
|
193
|
-
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
|
|
194
|
-
|
|
195
|
-
### [sites](/docs/commands/sites.md)
|
|
196
|
-
|
|
197
|
-
Handle various site operations
|
|
198
|
-
|
|
199
|
-
| Subcommand | description |
|
|
200
|
-
|:--------------------------- |:-----|
|
|
201
|
-
| [`sites:create`](/docs/commands/sites.md#sitescreate) | Create an empty site (advanced) |
|
|
202
|
-
| [`sites:create-template`](/docs/commands/sites.md#sitescreate-template) | (Beta) Create a site from a starter template |
|
|
203
|
-
| [`sites:delete`](/docs/commands/sites.md#sitesdelete) | Delete a site |
|
|
204
|
-
| [`sites:list`](/docs/commands/sites.md#siteslist) | List all sites you have access to |
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
### [status](/docs/commands/status.md)
|
|
208
|
-
|
|
209
|
-
Print status information
|
|
210
|
-
|
|
211
|
-
| Subcommand | description |
|
|
212
|
-
|:--------------------------- |:-----|
|
|
213
|
-
| [`status:hooks`](/docs/commands/status.md#statushooks) | Print hook information of the linked site |
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
### [switch](/docs/commands/switch.md)
|
|
217
|
-
|
|
218
|
-
Switch your active Netlify account
|
|
219
|
-
|
|
220
|
-
### [unlink](/docs/commands/unlink.md)
|
|
221
|
-
|
|
222
|
-
Unlink a local folder from a Netlify site
|
|
223
|
-
|
|
224
|
-
### [watch](/docs/commands/watch.md)
|
|
225
|
-
|
|
226
|
-
Watch for site deploy to finish
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
<!-- AUTO-GENERATED-CONTENT:END -->
|
|
93
|
+
For a full command reference visit [cli.netlify.com](https://cli.netlify.com/).
|
|
230
94
|
|
|
231
95
|
## Contributing
|
|
232
96
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.4.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "17.
|
|
9
|
+
"version": "17.4.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@bugsnag/js": "7.20.2",
|
|
14
14
|
"@fastify/static": "6.10.2",
|
|
15
|
-
"@netlify/blobs": "^
|
|
16
|
-
"@netlify/build": "29.26.
|
|
15
|
+
"@netlify/blobs": "^6.3.0",
|
|
16
|
+
"@netlify/build": "29.26.6",
|
|
17
17
|
"@netlify/build-info": "7.11.1",
|
|
18
|
-
"@netlify/config": "20.
|
|
19
|
-
"@netlify/edge-bundler": "
|
|
18
|
+
"@netlify/config": "20.10.0",
|
|
19
|
+
"@netlify/edge-bundler": "10.1.2",
|
|
20
20
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
21
21
|
"@netlify/zip-it-and-ship-it": "9.26.1",
|
|
22
22
|
"@octokit/rest": "19.0.13",
|
|
@@ -68,23 +68,23 @@
|
|
|
68
68
|
"https-proxy-agent": "5.0.1",
|
|
69
69
|
"inquirer": "6.5.2",
|
|
70
70
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
71
|
-
"ipx": "
|
|
71
|
+
"ipx": "2.0.1",
|
|
72
72
|
"is-docker": "3.0.0",
|
|
73
73
|
"is-stream": "3.0.0",
|
|
74
74
|
"is-wsl": "2.2.0",
|
|
75
75
|
"isexe": "2.0.0",
|
|
76
|
-
"js-yaml": "
|
|
76
|
+
"js-yaml": "4.1.0",
|
|
77
77
|
"jsonwebtoken": "9.0.1",
|
|
78
78
|
"jwt-decode": "3.1.2",
|
|
79
79
|
"lambda-local": "2.1.2",
|
|
80
|
-
"listr2": "
|
|
80
|
+
"listr2": "7.0.2",
|
|
81
81
|
"locate-path": "7.2.0",
|
|
82
82
|
"lodash": "4.17.21",
|
|
83
83
|
"log-symbols": "5.1.0",
|
|
84
84
|
"log-update": "5.0.1",
|
|
85
85
|
"minimist": "1.2.8",
|
|
86
86
|
"multiparty": "4.2.3",
|
|
87
|
-
"netlify": "13.1.
|
|
87
|
+
"netlify": "13.1.11",
|
|
88
88
|
"netlify-headers-parser": "7.1.2",
|
|
89
89
|
"netlify-redirect-parser": "14.2.0",
|
|
90
90
|
"netlify-redirector": "0.5.0",
|
|
@@ -112,14 +112,14 @@
|
|
|
112
112
|
"through2-map": "3.0.0",
|
|
113
113
|
"to-readable-stream": "3.0.0",
|
|
114
114
|
"toml": "3.0.0",
|
|
115
|
-
"tomlify-j0.4": "
|
|
115
|
+
"tomlify-j0.4": "3.0.0",
|
|
116
116
|
"ulid": "2.3.0",
|
|
117
117
|
"unixify": "1.0.0",
|
|
118
118
|
"update-notifier": "6.0.2",
|
|
119
119
|
"uuid": "9.0.0",
|
|
120
120
|
"wait-port": "1.0.4",
|
|
121
121
|
"write-file-atomic": "5.0.1",
|
|
122
|
-
"zod": "
|
|
122
|
+
"zod": "3.22.4"
|
|
123
123
|
},
|
|
124
124
|
"bin": {
|
|
125
125
|
"netlify": "bin/run.mjs",
|
|
@@ -810,23 +810,23 @@
|
|
|
810
810
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
811
811
|
},
|
|
812
812
|
"node_modules/@netlify/blobs": {
|
|
813
|
-
"version": "
|
|
814
|
-
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-
|
|
815
|
-
"integrity": "sha512-
|
|
813
|
+
"version": "6.3.0",
|
|
814
|
+
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.3.0.tgz",
|
|
815
|
+
"integrity": "sha512-EcgttqwH7kmK5B9RO8hRwAx/pkO9RwfFoRl+B38UNiFN6L4T46Q9Vhxnp3EzXQxn7Le1RpwFnXhd+UAhyZod+g==",
|
|
816
816
|
"engines": {
|
|
817
817
|
"node": "^14.16.0 || >=16.0.0"
|
|
818
818
|
}
|
|
819
819
|
},
|
|
820
820
|
"node_modules/@netlify/build": {
|
|
821
|
-
"version": "29.26.
|
|
822
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.
|
|
823
|
-
"integrity": "sha512-
|
|
821
|
+
"version": "29.26.6",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.6.tgz",
|
|
823
|
+
"integrity": "sha512-NAnlCgvX6rmeEakKil6F06nMY0sXwRW0LumC8Mhnl5+b4SKTb9U2px97aBnWX5BXGa2T1RYHGuXjd+Vuefrc9A==",
|
|
824
824
|
"dependencies": {
|
|
825
825
|
"@bugsnag/js": "^7.0.0",
|
|
826
826
|
"@honeycombio/opentelemetry-node": "^0.5.0",
|
|
827
827
|
"@netlify/cache-utils": "^5.1.5",
|
|
828
|
-
"@netlify/config": "^20.
|
|
829
|
-
"@netlify/edge-bundler": "10.1.
|
|
828
|
+
"@netlify/config": "^20.10.0",
|
|
829
|
+
"@netlify/edge-bundler": "10.1.2",
|
|
830
830
|
"@netlify/framework-info": "^9.8.10",
|
|
831
831
|
"@netlify/functions-utils": "^5.2.40",
|
|
832
832
|
"@netlify/git-utils": "^5.1.1",
|
|
@@ -1113,9 +1113,9 @@
|
|
|
1113
1113
|
}
|
|
1114
1114
|
},
|
|
1115
1115
|
"node_modules/@netlify/build/node_modules/http2-wrapper": {
|
|
1116
|
-
"version": "2.2.
|
|
1117
|
-
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.
|
|
1118
|
-
"integrity": "sha512-
|
|
1116
|
+
"version": "2.2.1",
|
|
1117
|
+
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
|
|
1118
|
+
"integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
|
|
1119
1119
|
"dependencies": {
|
|
1120
1120
|
"quick-lru": "^5.1.1",
|
|
1121
1121
|
"resolve-alpn": "^1.2.0"
|
|
@@ -1392,9 +1392,9 @@
|
|
|
1392
1392
|
}
|
|
1393
1393
|
},
|
|
1394
1394
|
"node_modules/@netlify/config": {
|
|
1395
|
-
"version": "20.
|
|
1396
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.
|
|
1397
|
-
"integrity": "sha512
|
|
1395
|
+
"version": "20.10.0",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.0.tgz",
|
|
1397
|
+
"integrity": "sha512-7CNoL5IPSRBzDVzxuQgltZ71D/vZ/oYR29sfN8EXjAFOZPSLtnZgborcPa9V9BXLN4N5h0hFp2A26lnnCttEFg==",
|
|
1398
1398
|
"dependencies": {
|
|
1399
1399
|
"chalk": "^5.0.0",
|
|
1400
1400
|
"cron-parser": "^4.1.0",
|
|
@@ -1409,7 +1409,7 @@
|
|
|
1409
1409
|
"is-plain-obj": "^4.0.0",
|
|
1410
1410
|
"js-yaml": "^4.0.0",
|
|
1411
1411
|
"map-obj": "^5.0.0",
|
|
1412
|
-
"netlify": "^13.1.
|
|
1412
|
+
"netlify": "^13.1.11",
|
|
1413
1413
|
"netlify-headers-parser": "^7.1.2",
|
|
1414
1414
|
"netlify-redirect-parser": "^14.2.0",
|
|
1415
1415
|
"node-fetch": "^3.3.1",
|
|
@@ -1613,9 +1613,9 @@
|
|
|
1613
1613
|
}
|
|
1614
1614
|
},
|
|
1615
1615
|
"node_modules/@netlify/edge-bundler": {
|
|
1616
|
-
"version": "10.1.
|
|
1617
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.
|
|
1618
|
-
"integrity": "sha512-
|
|
1616
|
+
"version": "10.1.2",
|
|
1617
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.2.tgz",
|
|
1618
|
+
"integrity": "sha512-OMAESYuDhfjugGI5uuDODpHQtHhjKkm7eI4R9R6TQoU27ga3zqcLw7rEEO17cNzIte1ZPCsH4cj/LJyMVMa3lA==",
|
|
1619
1619
|
"dependencies": {
|
|
1620
1620
|
"@import-maps/resolve": "^1.0.1",
|
|
1621
1621
|
"@vercel/nft": "^0.24.3",
|
|
@@ -2608,9 +2608,9 @@
|
|
|
2608
2608
|
}
|
|
2609
2609
|
},
|
|
2610
2610
|
"node_modules/@netlify/open-api": {
|
|
2611
|
-
"version": "2.
|
|
2612
|
-
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.
|
|
2613
|
-
"integrity": "sha512-
|
|
2611
|
+
"version": "2.26.0",
|
|
2612
|
+
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.0.tgz",
|
|
2613
|
+
"integrity": "sha512-B7q+ySzQm6rJhaGbY0Pzqnb1p3FsBqwiPLnLtA17JgTsqmXgQ7j6OQImW9fRJy/Al1ob9M6Oxng/FA2c7aIW1g=="
|
|
2614
2614
|
},
|
|
2615
2615
|
"node_modules/@netlify/plugins-list": {
|
|
2616
2616
|
"version": "6.72.0",
|
|
@@ -5153,11 +5153,11 @@
|
|
|
5153
5153
|
"peer": true
|
|
5154
5154
|
},
|
|
5155
5155
|
"node_modules/@types/node": {
|
|
5156
|
-
"version": "20.
|
|
5157
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.
|
|
5158
|
-
"integrity": "sha512-
|
|
5156
|
+
"version": "20.9.0",
|
|
5157
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz",
|
|
5158
|
+
"integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==",
|
|
5159
5159
|
"dependencies": {
|
|
5160
|
-
"undici-types": "~5.
|
|
5160
|
+
"undici-types": "~5.26.4"
|
|
5161
5161
|
}
|
|
5162
5162
|
},
|
|
5163
5163
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -12168,11 +12168,11 @@
|
|
|
12168
12168
|
"integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
|
|
12169
12169
|
},
|
|
12170
12170
|
"node_modules/netlify": {
|
|
12171
|
-
"version": "13.1.
|
|
12172
|
-
"resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.
|
|
12173
|
-
"integrity": "sha512-
|
|
12171
|
+
"version": "13.1.11",
|
|
12172
|
+
"resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.11.tgz",
|
|
12173
|
+
"integrity": "sha512-exrD6cqwo5avDNtU7YT9iuN0+yoW+aaEUxvr/39oP36wZRKreoPm6KNVisTR9d4lXrPeUG8XI+rERuLhwMQmdw==",
|
|
12174
12174
|
"dependencies": {
|
|
12175
|
-
"@netlify/open-api": "^2.
|
|
12175
|
+
"@netlify/open-api": "^2.26.0",
|
|
12176
12176
|
"lodash-es": "^4.17.21",
|
|
12177
12177
|
"micro-api-client": "^3.3.0",
|
|
12178
12178
|
"node-fetch": "^3.0.0",
|
|
@@ -13307,9 +13307,9 @@
|
|
|
13307
13307
|
}
|
|
13308
13308
|
},
|
|
13309
13309
|
"node_modules/postcss": {
|
|
13310
|
-
"version": "8.4.
|
|
13311
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.
|
|
13312
|
-
"integrity": "sha512-
|
|
13310
|
+
"version": "8.4.31",
|
|
13311
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
13312
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
13313
13313
|
"funding": [
|
|
13314
13314
|
{
|
|
13315
13315
|
"type": "opencollective",
|
|
@@ -15686,9 +15686,9 @@
|
|
|
15686
15686
|
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
|
|
15687
15687
|
},
|
|
15688
15688
|
"node_modules/undici-types": {
|
|
15689
|
-
"version": "5.
|
|
15690
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.
|
|
15691
|
-
"integrity": "sha512-
|
|
15689
|
+
"version": "5.26.5",
|
|
15690
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
|
15691
|
+
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
|
15692
15692
|
},
|
|
15693
15693
|
"node_modules/unenv": {
|
|
15694
15694
|
"version": "1.7.4",
|
|
@@ -17035,20 +17035,20 @@
|
|
|
17035
17035
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
17036
17036
|
},
|
|
17037
17037
|
"@netlify/blobs": {
|
|
17038
|
-
"version": "
|
|
17039
|
-
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-
|
|
17040
|
-
"integrity": "sha512-
|
|
17038
|
+
"version": "6.3.0",
|
|
17039
|
+
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.3.0.tgz",
|
|
17040
|
+
"integrity": "sha512-EcgttqwH7kmK5B9RO8hRwAx/pkO9RwfFoRl+B38UNiFN6L4T46Q9Vhxnp3EzXQxn7Le1RpwFnXhd+UAhyZod+g=="
|
|
17041
17041
|
},
|
|
17042
17042
|
"@netlify/build": {
|
|
17043
|
-
"version": "29.26.
|
|
17044
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.
|
|
17045
|
-
"integrity": "sha512-
|
|
17043
|
+
"version": "29.26.6",
|
|
17044
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.6.tgz",
|
|
17045
|
+
"integrity": "sha512-NAnlCgvX6rmeEakKil6F06nMY0sXwRW0LumC8Mhnl5+b4SKTb9U2px97aBnWX5BXGa2T1RYHGuXjd+Vuefrc9A==",
|
|
17046
17046
|
"requires": {
|
|
17047
17047
|
"@bugsnag/js": "^7.0.0",
|
|
17048
17048
|
"@honeycombio/opentelemetry-node": "^0.5.0",
|
|
17049
17049
|
"@netlify/cache-utils": "^5.1.5",
|
|
17050
|
-
"@netlify/config": "^20.
|
|
17051
|
-
"@netlify/edge-bundler": "10.1.
|
|
17050
|
+
"@netlify/config": "^20.10.0",
|
|
17051
|
+
"@netlify/edge-bundler": "10.1.2",
|
|
17052
17052
|
"@netlify/framework-info": "^9.8.10",
|
|
17053
17053
|
"@netlify/functions-utils": "^5.2.40",
|
|
17054
17054
|
"@netlify/git-utils": "^5.1.1",
|
|
@@ -17201,9 +17201,9 @@
|
|
|
17201
17201
|
}
|
|
17202
17202
|
},
|
|
17203
17203
|
"http2-wrapper": {
|
|
17204
|
-
"version": "2.2.
|
|
17205
|
-
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.
|
|
17206
|
-
"integrity": "sha512-
|
|
17204
|
+
"version": "2.2.1",
|
|
17205
|
+
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
|
|
17206
|
+
"integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
|
|
17207
17207
|
"requires": {
|
|
17208
17208
|
"quick-lru": "^5.1.1",
|
|
17209
17209
|
"resolve-alpn": "^1.2.0"
|
|
@@ -17419,9 +17419,9 @@
|
|
|
17419
17419
|
}
|
|
17420
17420
|
},
|
|
17421
17421
|
"@netlify/config": {
|
|
17422
|
-
"version": "20.
|
|
17423
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.
|
|
17424
|
-
"integrity": "sha512
|
|
17422
|
+
"version": "20.10.0",
|
|
17423
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.0.tgz",
|
|
17424
|
+
"integrity": "sha512-7CNoL5IPSRBzDVzxuQgltZ71D/vZ/oYR29sfN8EXjAFOZPSLtnZgborcPa9V9BXLN4N5h0hFp2A26lnnCttEFg==",
|
|
17425
17425
|
"requires": {
|
|
17426
17426
|
"chalk": "^5.0.0",
|
|
17427
17427
|
"cron-parser": "^4.1.0",
|
|
@@ -17436,7 +17436,7 @@
|
|
|
17436
17436
|
"is-plain-obj": "^4.0.0",
|
|
17437
17437
|
"js-yaml": "^4.0.0",
|
|
17438
17438
|
"map-obj": "^5.0.0",
|
|
17439
|
-
"netlify": "^13.1.
|
|
17439
|
+
"netlify": "^13.1.11",
|
|
17440
17440
|
"netlify-headers-parser": "^7.1.2",
|
|
17441
17441
|
"netlify-redirect-parser": "^14.2.0",
|
|
17442
17442
|
"node-fetch": "^3.3.1",
|
|
@@ -17554,9 +17554,9 @@
|
|
|
17554
17554
|
}
|
|
17555
17555
|
},
|
|
17556
17556
|
"@netlify/edge-bundler": {
|
|
17557
|
-
"version": "10.1.
|
|
17558
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.
|
|
17559
|
-
"integrity": "sha512-
|
|
17557
|
+
"version": "10.1.2",
|
|
17558
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.2.tgz",
|
|
17559
|
+
"integrity": "sha512-OMAESYuDhfjugGI5uuDODpHQtHhjKkm7eI4R9R6TQoU27ga3zqcLw7rEEO17cNzIte1ZPCsH4cj/LJyMVMa3lA==",
|
|
17560
17560
|
"requires": {
|
|
17561
17561
|
"@import-maps/resolve": "^1.0.1",
|
|
17562
17562
|
"@vercel/nft": "^0.24.3",
|
|
@@ -18098,9 +18098,9 @@
|
|
|
18098
18098
|
"integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g=="
|
|
18099
18099
|
},
|
|
18100
18100
|
"@netlify/open-api": {
|
|
18101
|
-
"version": "2.
|
|
18102
|
-
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.
|
|
18103
|
-
"integrity": "sha512-
|
|
18101
|
+
"version": "2.26.0",
|
|
18102
|
+
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.0.tgz",
|
|
18103
|
+
"integrity": "sha512-B7q+ySzQm6rJhaGbY0Pzqnb1p3FsBqwiPLnLtA17JgTsqmXgQ7j6OQImW9fRJy/Al1ob9M6Oxng/FA2c7aIW1g=="
|
|
18104
18104
|
},
|
|
18105
18105
|
"@netlify/plugins-list": {
|
|
18106
18106
|
"version": "6.72.0",
|
|
@@ -19717,11 +19717,11 @@
|
|
|
19717
19717
|
"peer": true
|
|
19718
19718
|
},
|
|
19719
19719
|
"@types/node": {
|
|
19720
|
-
"version": "20.
|
|
19721
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.
|
|
19722
|
-
"integrity": "sha512-
|
|
19720
|
+
"version": "20.9.0",
|
|
19721
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz",
|
|
19722
|
+
"integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==",
|
|
19723
19723
|
"requires": {
|
|
19724
|
-
"undici-types": "~5.
|
|
19724
|
+
"undici-types": "~5.26.4"
|
|
19725
19725
|
}
|
|
19726
19726
|
},
|
|
19727
19727
|
"@types/normalize-package-data": {
|
|
@@ -24855,11 +24855,11 @@
|
|
|
24855
24855
|
"integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
|
|
24856
24856
|
},
|
|
24857
24857
|
"netlify": {
|
|
24858
|
-
"version": "13.1.
|
|
24859
|
-
"resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.
|
|
24860
|
-
"integrity": "sha512-
|
|
24858
|
+
"version": "13.1.11",
|
|
24859
|
+
"resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.11.tgz",
|
|
24860
|
+
"integrity": "sha512-exrD6cqwo5avDNtU7YT9iuN0+yoW+aaEUxvr/39oP36wZRKreoPm6KNVisTR9d4lXrPeUG8XI+rERuLhwMQmdw==",
|
|
24861
24861
|
"requires": {
|
|
24862
|
-
"@netlify/open-api": "^2.
|
|
24862
|
+
"@netlify/open-api": "^2.26.0",
|
|
24863
24863
|
"lodash-es": "^4.17.21",
|
|
24864
24864
|
"micro-api-client": "^3.3.0",
|
|
24865
24865
|
"node-fetch": "^3.0.0",
|
|
@@ -25629,9 +25629,9 @@
|
|
|
25629
25629
|
"integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
|
|
25630
25630
|
},
|
|
25631
25631
|
"postcss": {
|
|
25632
|
-
"version": "8.4.
|
|
25633
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.
|
|
25634
|
-
"integrity": "sha512-
|
|
25632
|
+
"version": "8.4.31",
|
|
25633
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
25634
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
25635
25635
|
"requires": {
|
|
25636
25636
|
"nanoid": "^3.3.6",
|
|
25637
25637
|
"picocolors": "^1.0.0",
|
|
@@ -27416,9 +27416,9 @@
|
|
|
27416
27416
|
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
|
|
27417
27417
|
},
|
|
27418
27418
|
"undici-types": {
|
|
27419
|
-
"version": "5.
|
|
27420
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.
|
|
27421
|
-
"integrity": "sha512-
|
|
27419
|
+
"version": "5.26.5",
|
|
27420
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
|
27421
|
+
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
|
27422
27422
|
},
|
|
27423
27423
|
"unenv": {
|
|
27424
27424
|
"version": "1.7.4",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.4.0",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -11,15 +11,16 @@
|
|
|
11
11
|
"/bin",
|
|
12
12
|
"/npm-shrinkwrap.json",
|
|
13
13
|
"/scripts/postinstall.mjs",
|
|
14
|
-
"/src/**/*.cjs",
|
|
15
14
|
"/src/**/*.js",
|
|
16
15
|
"/src/**/*.mjs",
|
|
16
|
+
"/src/**/types.d.ts",
|
|
17
17
|
"/src/**/*.sh",
|
|
18
18
|
"/src/**/*.ps1",
|
|
19
19
|
"/src/functions-templates/**",
|
|
20
20
|
"/src/lib/templates/**",
|
|
21
21
|
"!/src/**/node_modules/**",
|
|
22
|
-
"!/src/**/*.test.js"
|
|
22
|
+
"!/src/**/*.test.js",
|
|
23
|
+
"!/src/**/*.mts"
|
|
23
24
|
],
|
|
24
25
|
"homepage": "https://github.com/netlify/cli",
|
|
25
26
|
"keywords": [
|
|
@@ -38,17 +39,17 @@
|
|
|
38
39
|
"url": "https://github.com/netlify/cli/issues"
|
|
39
40
|
},
|
|
40
41
|
"scripts": {
|
|
41
|
-
"
|
|
42
|
-
"
|
|
42
|
+
"prepublishOnly": "node ./scripts/prepare-for-publish.mjs",
|
|
43
|
+
"postinstall": "node ./scripts/postinstall.mjs"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
46
|
"@bugsnag/js": "7.20.2",
|
|
46
47
|
"@fastify/static": "6.10.2",
|
|
47
|
-
"@netlify/blobs": "^
|
|
48
|
-
"@netlify/build": "29.26.
|
|
48
|
+
"@netlify/blobs": "^6.3.0",
|
|
49
|
+
"@netlify/build": "29.26.6",
|
|
49
50
|
"@netlify/build-info": "7.11.1",
|
|
50
|
-
"@netlify/config": "20.
|
|
51
|
-
"@netlify/edge-bundler": "
|
|
51
|
+
"@netlify/config": "20.10.0",
|
|
52
|
+
"@netlify/edge-bundler": "10.1.2",
|
|
52
53
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
53
54
|
"@netlify/zip-it-and-ship-it": "9.26.1",
|
|
54
55
|
"@octokit/rest": "19.0.13",
|
|
@@ -100,23 +101,23 @@
|
|
|
100
101
|
"https-proxy-agent": "5.0.1",
|
|
101
102
|
"inquirer": "6.5.2",
|
|
102
103
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
103
|
-
"ipx": "
|
|
104
|
+
"ipx": "2.0.1",
|
|
104
105
|
"is-docker": "3.0.0",
|
|
105
106
|
"is-stream": "3.0.0",
|
|
106
107
|
"is-wsl": "2.2.0",
|
|
107
108
|
"isexe": "2.0.0",
|
|
108
|
-
"js-yaml": "
|
|
109
|
+
"js-yaml": "4.1.0",
|
|
109
110
|
"jsonwebtoken": "9.0.1",
|
|
110
111
|
"jwt-decode": "3.1.2",
|
|
111
112
|
"lambda-local": "2.1.2",
|
|
112
|
-
"listr2": "
|
|
113
|
+
"listr2": "7.0.2",
|
|
113
114
|
"locate-path": "7.2.0",
|
|
114
115
|
"lodash": "4.17.21",
|
|
115
116
|
"log-symbols": "5.1.0",
|
|
116
117
|
"log-update": "5.0.1",
|
|
117
118
|
"minimist": "1.2.8",
|
|
118
119
|
"multiparty": "4.2.3",
|
|
119
|
-
"netlify": "13.1.
|
|
120
|
+
"netlify": "13.1.11",
|
|
120
121
|
"netlify-headers-parser": "7.1.2",
|
|
121
122
|
"netlify-redirect-parser": "14.2.0",
|
|
122
123
|
"netlify-redirector": "0.5.0",
|
|
@@ -144,13 +145,13 @@
|
|
|
144
145
|
"through2-map": "3.0.0",
|
|
145
146
|
"to-readable-stream": "3.0.0",
|
|
146
147
|
"toml": "3.0.0",
|
|
147
|
-
"tomlify-j0.4": "
|
|
148
|
+
"tomlify-j0.4": "3.0.0",
|
|
148
149
|
"ulid": "2.3.0",
|
|
149
150
|
"unixify": "1.0.0",
|
|
150
151
|
"update-notifier": "6.0.2",
|
|
151
152
|
"uuid": "9.0.0",
|
|
152
153
|
"wait-port": "1.0.4",
|
|
153
154
|
"write-file-atomic": "5.0.1",
|
|
154
|
-
"zod": "
|
|
155
|
+
"zod": "3.22.4"
|
|
155
156
|
}
|
|
156
157
|
}
|