netlify-cli 12.7.2 → 12.8.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/npm-shrinkwrap.json +560 -624
- package/package.json +11 -11
- package/src/commands/addons/addons.mjs +0 -1
- package/src/commands/base-command.mjs +18 -2
- package/src/commands/deploy/deploy.mjs +11 -2
- package/src/commands/dev/dev.mjs +43 -8
- package/src/commands/env/env-import.mjs +10 -1
- package/src/commands/init/init.mjs +8 -1
- package/src/commands/link/link.mjs +8 -1
- package/src/commands/serve/index.mjs +1 -0
- package/src/commands/serve/serve.mjs +6 -1
- package/src/functions-templates/go/hello-world/go.mod +1 -1
- package/src/functions-templates/javascript/auth-fetch/package-lock.json +7 -7
- package/src/functions-templates/javascript/google-analytics/package-lock.json +6 -6
- package/src/functions-templates/javascript/token-hider/package-lock.json +6 -6
- package/src/functions-templates/rust/hello-world/Cargo.lock +571 -135
- package/src/functions-templates/rust/hello-world/Cargo.toml +3 -3
- package/src/functions-templates/typescript/hello-world/package-lock.json +12 -12
- package/src/lib/edge-functions/headers.mjs +3 -3
- package/src/lib/edge-functions/proxy.mjs +6 -8
- package/src/lib/edge-functions/registry.mjs +9 -1
- package/src/utils/get-repo-data.mjs +1 -1
- package/src/utils/proxy-server.mjs +3 -0
- package/src/utils/proxy.mjs +28 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "12.
|
|
4
|
+
"version": "12.8.0",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@fastify/static": "^6.6.0",
|
|
79
|
-
"@netlify/build": "^29.
|
|
80
|
-
"@netlify/config": "^20.3.
|
|
81
|
-
"@netlify/edge-bundler": "^8.
|
|
82
|
-
"@netlify/framework-info": "^9.
|
|
79
|
+
"@netlify/build": "^29.5.1",
|
|
80
|
+
"@netlify/config": "^20.3.1",
|
|
81
|
+
"@netlify/edge-bundler": "^8.4.0",
|
|
82
|
+
"@netlify/framework-info": "^9.7.1",
|
|
83
83
|
"@netlify/local-functions-proxy": "^1.1.1",
|
|
84
|
-
"@netlify/zip-it-and-ship-it": "^8.
|
|
84
|
+
"@netlify/zip-it-and-ship-it": "^8.4.1",
|
|
85
85
|
"@octokit/rest": "^19.0.0",
|
|
86
86
|
"ansi-escapes": "^5.0.0",
|
|
87
87
|
"ansi-styles": "^5.0.0",
|
|
@@ -143,10 +143,10 @@
|
|
|
143
143
|
"log-update": "^5.0.0",
|
|
144
144
|
"minimist": "^1.2.5",
|
|
145
145
|
"multiparty": "^4.2.1",
|
|
146
|
-
"netlify": "^13.1.
|
|
147
|
-
"netlify-headers-parser": "^7.1.
|
|
146
|
+
"netlify": "^13.1.1",
|
|
147
|
+
"netlify-headers-parser": "^7.1.1",
|
|
148
148
|
"netlify-onegraph-internal": "0.10.1",
|
|
149
|
-
"netlify-redirect-parser": "^14.1.
|
|
149
|
+
"netlify-redirect-parser": "^14.1.1",
|
|
150
150
|
"netlify-redirector": "^0.3.1",
|
|
151
151
|
"node-fetch": "^2.6.0",
|
|
152
152
|
"node-version-alias": "^1.0.1",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"devDependencies": {
|
|
184
184
|
"@babel/preset-react": "^7.12.13",
|
|
185
185
|
"@netlify/eslint-config-node": "^7.0.0",
|
|
186
|
-
"@vitest/coverage-c8": "^0.
|
|
186
|
+
"@vitest/coverage-c8": "^0.27.0",
|
|
187
187
|
"ava": "^4.0.0",
|
|
188
188
|
"c8": "^7.11.0",
|
|
189
189
|
"eslint-plugin-sort-destructure-keys": "^1.3.5",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"typescript": "^4.4.4",
|
|
207
207
|
"verdaccio": "^5.10.2",
|
|
208
208
|
"vite": "^4.0.0",
|
|
209
|
-
"vitest": "^0.
|
|
209
|
+
"vitest": "^0.27.0"
|
|
210
210
|
},
|
|
211
211
|
"ava": {
|
|
212
212
|
"files": [
|
|
@@ -99,13 +99,29 @@ export default class BaseCommand extends Command {
|
|
|
99
99
|
.addOption(new Option('--cwd <cwd>').hideHelp(true))
|
|
100
100
|
.addOption(new Option('-o, --offline').hideHelp(true))
|
|
101
101
|
.addOption(new Option('--auth <token>', 'Netlify auth token').hideHelp(true))
|
|
102
|
+
.addOption(
|
|
103
|
+
new Option(
|
|
104
|
+
'--httpProxy [address]',
|
|
105
|
+
'Old, prefer --http-proxy. Proxy server address to route requests through.',
|
|
106
|
+
)
|
|
107
|
+
.default(process.env.HTTP_PROXY || process.env.HTTPS_PROXY)
|
|
108
|
+
.hideHelp(true),
|
|
109
|
+
)
|
|
110
|
+
.addOption(
|
|
111
|
+
new Option(
|
|
112
|
+
'--httpProxyCertificateFilename [file]',
|
|
113
|
+
'Old, prefer --http-proxy-certificate-filename. Certificate file to use when connecting using a proxy server.',
|
|
114
|
+
)
|
|
115
|
+
.default(process.env.NETLIFY_PROXY_CERTIFICATE_FILENAME)
|
|
116
|
+
.hideHelp(true),
|
|
117
|
+
)
|
|
102
118
|
.option(
|
|
103
|
-
'--
|
|
119
|
+
'--http-proxy-certificate-filename [file]',
|
|
104
120
|
'Certificate file to use when connecting using a proxy server',
|
|
105
121
|
process.env.NETLIFY_PROXY_CERTIFICATE_FILENAME,
|
|
106
122
|
)
|
|
107
123
|
.option(
|
|
108
|
-
'--
|
|
124
|
+
'--http-proxy [address]',
|
|
109
125
|
'Proxy server address to route requests through.',
|
|
110
126
|
process.env.HTTP_PROXY || process.env.HTTPS_PROXY,
|
|
111
127
|
)
|
|
@@ -5,6 +5,7 @@ import { cwd, env } from 'process'
|
|
|
5
5
|
|
|
6
6
|
import { runCoreSteps } from '@netlify/build'
|
|
7
7
|
import { restoreConfig, updateConfig } from '@netlify/config'
|
|
8
|
+
import { Option } from 'commander'
|
|
8
9
|
import { get } from 'dot-prop'
|
|
9
10
|
import inquirer from 'inquirer'
|
|
10
11
|
import isObject from 'lodash/isObject.js'
|
|
@@ -726,7 +727,15 @@ Support for package.json's main field, and intrinsic index.js entrypoints are co
|
|
|
726
727
|
.option('-d, --dir <path>', 'Specify a folder to deploy')
|
|
727
728
|
.option('-f, --functions <folder>', 'Specify a functions folder to deploy')
|
|
728
729
|
.option('-p, --prod', 'Deploy to production', false)
|
|
729
|
-
.
|
|
730
|
+
.addOption(
|
|
731
|
+
new Option(
|
|
732
|
+
'--prodIfUnlocked',
|
|
733
|
+
'Old, prefer --prod-if-unlocked. Deploy to production if unlocked, create a draft otherwise',
|
|
734
|
+
)
|
|
735
|
+
.default(false)
|
|
736
|
+
.hideHelp(true),
|
|
737
|
+
)
|
|
738
|
+
.option('--prod-if-unlocked', 'Deploy to production if unlocked, create a draft otherwise', false)
|
|
730
739
|
.option(
|
|
731
740
|
'--alias <name>',
|
|
732
741
|
'Specifies the alias for deployment, the string at the beginning of the deploy subdomain. Useful for creating predictable deployment URLs. Avoid setting an alias string to the same value as a deployed branch. `alias` doesn’t create a branch deploy and can’t be used in conjunction with the branch subdomain feature. Maximum 37 characters.',
|
|
@@ -754,7 +763,7 @@ Support for package.json's main field, and intrinsic index.js entrypoints are co
|
|
|
754
763
|
'netlify deploy --site my-first-site',
|
|
755
764
|
'netlify deploy --prod',
|
|
756
765
|
'netlify deploy --prod --open',
|
|
757
|
-
'netlify deploy --
|
|
766
|
+
'netlify deploy --prod-if-unlocked',
|
|
758
767
|
'netlify deploy --message "A message with an $ENV_VAR"',
|
|
759
768
|
'netlify deploy --auth $NETLIFY_AUTH_TOKEN',
|
|
760
769
|
'netlify deploy --trigger',
|
package/src/commands/dev/dev.mjs
CHANGED
|
@@ -163,6 +163,7 @@ const dev = async (options, command) => {
|
|
|
163
163
|
addonsUrls,
|
|
164
164
|
config,
|
|
165
165
|
configPath: configPathOverride,
|
|
166
|
+
debug: options.debug,
|
|
166
167
|
env,
|
|
167
168
|
geolocationMode: options.geo,
|
|
168
169
|
geoCountry: options.country,
|
|
@@ -219,13 +220,23 @@ export const createDevCommand = (program) => {
|
|
|
219
220
|
normalizeContext,
|
|
220
221
|
)
|
|
221
222
|
.option('-p ,--port <port>', 'port of netlify dev', (value) => Number.parseInt(value))
|
|
222
|
-
.
|
|
223
|
+
.addOption(
|
|
224
|
+
new Option('--targetPort <port>', 'Old, prefer --target-port. Port of target app server')
|
|
225
|
+
.argParser((value) => Number.parseInt(value))
|
|
226
|
+
.hideHelp(true),
|
|
227
|
+
)
|
|
228
|
+
.option('--target-port <port>', 'port of target app server', (value) => Number.parseInt(value))
|
|
223
229
|
.option('--framework <name>', 'framework to use. Defaults to #auto which automatically detects a framework')
|
|
224
230
|
.option('-d ,--dir <path>', 'dir with static files')
|
|
225
231
|
.option('-f ,--functions <folder>', 'specify a functions folder to serve')
|
|
226
232
|
.option('-o ,--offline', 'disables any features that require network access')
|
|
227
233
|
.option('-l, --live', 'start a public live session', false)
|
|
228
|
-
.
|
|
234
|
+
.addOption(
|
|
235
|
+
new Option('--functionsPort <port>', 'Old, prefer --functions-port. Port of functions server')
|
|
236
|
+
.argParser((value) => Number.parseInt(value))
|
|
237
|
+
.hideHelp(true),
|
|
238
|
+
)
|
|
239
|
+
.option('--functions-port <port>', 'port of functions server', (value) => Number.parseInt(value))
|
|
229
240
|
.addOption(
|
|
230
241
|
new Option(
|
|
231
242
|
'--geo <mode>',
|
|
@@ -246,10 +257,25 @@ export const createDevCommand = (program) => {
|
|
|
246
257
|
.hideHelp(),
|
|
247
258
|
)
|
|
248
259
|
.addOption(new Option('--graph', 'enable Netlify Graph support').hideHelp())
|
|
249
|
-
.addOption(
|
|
260
|
+
.addOption(
|
|
261
|
+
new Option(
|
|
262
|
+
'--sessionId [sessionId]',
|
|
263
|
+
'Old, prefer --session-id. (Graph) connect to cloud session with ID [sessionId]',
|
|
264
|
+
).hideHelp(true),
|
|
265
|
+
)
|
|
266
|
+
.option('--session-id [sessionId]', '(Graph) connect to cloud session with ID [sessionId]')
|
|
250
267
|
.addOption(
|
|
251
268
|
new Option(
|
|
252
269
|
'-e, --edgeInspect [address]',
|
|
270
|
+
'Old, prefer --edge-inspect. Enable the V8 Inspector Protocol for Edge Functions, with an optional address in the host:port format',
|
|
271
|
+
)
|
|
272
|
+
.conflicts('edgeInspectBrk')
|
|
273
|
+
.argParser(validateShortFlagArgs)
|
|
274
|
+
.hideHelp(true),
|
|
275
|
+
)
|
|
276
|
+
.addOption(
|
|
277
|
+
new Option(
|
|
278
|
+
'-e, --edge-inspect [address]',
|
|
253
279
|
'enable the V8 Inspector Protocol for Edge Functions, with an optional address in the host:port format',
|
|
254
280
|
)
|
|
255
281
|
.conflicts('edgeInspectBrk')
|
|
@@ -258,6 +284,15 @@ export const createDevCommand = (program) => {
|
|
|
258
284
|
.addOption(
|
|
259
285
|
new Option(
|
|
260
286
|
'-E, --edgeInspectBrk [address]',
|
|
287
|
+
'Old, prefer --edge-inspect-brk. Enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port format',
|
|
288
|
+
)
|
|
289
|
+
.conflicts('edgeInspect')
|
|
290
|
+
.hideHelp(true)
|
|
291
|
+
.argParser(validateShortFlagArgs),
|
|
292
|
+
)
|
|
293
|
+
.addOption(
|
|
294
|
+
new Option(
|
|
295
|
+
'-E, --edge-inspect-brk [address]',
|
|
261
296
|
'enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port format',
|
|
262
297
|
)
|
|
263
298
|
.conflicts('edgeInspect')
|
|
@@ -266,13 +301,13 @@ export const createDevCommand = (program) => {
|
|
|
266
301
|
.addExamples([
|
|
267
302
|
'netlify dev',
|
|
268
303
|
'netlify dev -d public',
|
|
269
|
-
'netlify dev -c "hugo server -w" --
|
|
304
|
+
'netlify dev -c "hugo server -w" --target-port 1313',
|
|
270
305
|
'netlify dev --context production',
|
|
271
306
|
'netlify dev --graph',
|
|
272
|
-
'netlify dev --
|
|
273
|
-
'netlify dev --
|
|
274
|
-
'netlify dev --
|
|
275
|
-
'netlify dev --
|
|
307
|
+
'netlify dev --edge-inspect',
|
|
308
|
+
'netlify dev --edge-inspect=127.0.0.1:9229',
|
|
309
|
+
'netlify dev --edge-inspect-brk',
|
|
310
|
+
'netlify dev --edge-inspect-brk=127.0.0.1:9229',
|
|
276
311
|
'BROWSER=none netlify dev # disable browser auto opening',
|
|
277
312
|
])
|
|
278
313
|
.action(dev)
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { readFile } from 'fs/promises'
|
|
3
3
|
|
|
4
4
|
import AsciiTable from 'ascii-table'
|
|
5
|
+
import { Option } from 'commander'
|
|
5
6
|
import dotenv from 'dotenv'
|
|
6
7
|
|
|
7
8
|
import { exit, log, logJson } from '../../utils/command-helpers.mjs'
|
|
@@ -126,8 +127,16 @@ export const createEnvImportCommand = (program) =>
|
|
|
126
127
|
program
|
|
127
128
|
.command('env:import')
|
|
128
129
|
.argument('<fileName>', '.env file to import')
|
|
130
|
+
.addOption(
|
|
131
|
+
new Option(
|
|
132
|
+
'-r --replaceExisting',
|
|
133
|
+
'Old, prefer --replace-existing. Replace all existing variables instead of merging them with the current ones',
|
|
134
|
+
)
|
|
135
|
+
.default(false)
|
|
136
|
+
.hideHelp(true),
|
|
137
|
+
)
|
|
129
138
|
.option(
|
|
130
|
-
'-r, --
|
|
139
|
+
'-r, --replace-existing',
|
|
131
140
|
'Replace all existing variables instead of merging them with the current ones',
|
|
132
141
|
false,
|
|
133
142
|
)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// @ts-check
|
|
2
|
+
import { Option } from 'commander'
|
|
2
3
|
import dotProp from 'dot-prop'
|
|
3
4
|
import inquirer from 'inquirer'
|
|
4
5
|
import isEmpty from 'lodash/isEmpty.js'
|
|
@@ -229,5 +230,11 @@ export const createInitCommand = (program) =>
|
|
|
229
230
|
)
|
|
230
231
|
.option('-m, --manual', 'Manually configure a git remote for CI')
|
|
231
232
|
.option('--force', 'Reinitialize CI hooks if the linked site is already configured to use CI')
|
|
232
|
-
.
|
|
233
|
+
.addOption(
|
|
234
|
+
new Option(
|
|
235
|
+
'--gitRemoteName <name>',
|
|
236
|
+
'Old, prefer --git-remote-name. Name of Git remote to use. e.g. "origin"',
|
|
237
|
+
).hideHelp(true),
|
|
238
|
+
)
|
|
239
|
+
.option('--git-remote-name <name>', 'Name of Git remote to use. e.g. "origin"')
|
|
233
240
|
.action(init)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// @ts-check
|
|
2
|
+
import { Option } from 'commander'
|
|
2
3
|
import inquirer from 'inquirer'
|
|
3
4
|
|
|
4
5
|
import { listSites } from '../../lib/api.mjs'
|
|
@@ -345,6 +346,12 @@ export const createLinkCommand = (program) =>
|
|
|
345
346
|
.description('Link a local repo or project folder to an existing site on Netlify')
|
|
346
347
|
.option('--id <id>', 'ID of site to link to')
|
|
347
348
|
.option('--name <name>', 'Name of site to link to')
|
|
348
|
-
.
|
|
349
|
+
.addOption(
|
|
350
|
+
new Option(
|
|
351
|
+
'--gitRemoteName <name>',
|
|
352
|
+
'Old, prefer --git-remote-name. Name of Git remote to use. e.g. "origin"',
|
|
353
|
+
).hideHelp(true),
|
|
354
|
+
)
|
|
355
|
+
.option('--git-remote-name <name>', 'Name of Git remote to use. e.g. "origin"')
|
|
349
356
|
.addExamples(['netlify link', 'netlify link --id 123-123-123-123', 'netlify link --name my-site-name'])
|
|
350
357
|
.action(link)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { createServeCommand } from './serve.mjs'
|
|
@@ -165,7 +165,12 @@ export const createServeCommand = (program) =>
|
|
|
165
165
|
.option('-d ,--dir <path>', 'dir with static files')
|
|
166
166
|
.option('-f ,--functions <folder>', 'specify a functions folder to serve')
|
|
167
167
|
.option('-o ,--offline', 'disables any features that require network access')
|
|
168
|
-
.
|
|
168
|
+
.addOption(
|
|
169
|
+
new Option('--functionsPort <port>', 'Old, prefer --functions-port. Port of functions server')
|
|
170
|
+
.argParser((value) => Number.parseInt(value))
|
|
171
|
+
.hideHelp(true),
|
|
172
|
+
)
|
|
173
|
+
.option('--functions-port <port>', 'port of functions server', (value) => Number.parseInt(value))
|
|
169
174
|
.addOption(
|
|
170
175
|
new Option(
|
|
171
176
|
'--geo <mode>',
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"node-fetch": "^2.
|
|
12
|
+
"node-fetch": "^2.3.0"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"node_modules/node-fetch": {
|
|
16
|
-
"version": "2.6.
|
|
17
|
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.
|
|
18
|
-
"integrity": "sha512-
|
|
16
|
+
"version": "2.6.8",
|
|
17
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz",
|
|
18
|
+
"integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"whatwg-url": "^5.0.0"
|
|
21
21
|
},
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"node-fetch": {
|
|
56
|
-
"version": "2.6.
|
|
57
|
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.
|
|
58
|
-
"integrity": "sha512-
|
|
56
|
+
"version": "2.6.8",
|
|
57
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz",
|
|
58
|
+
"integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==",
|
|
59
59
|
"requires": {
|
|
60
60
|
"whatwg-url": "^5.0.0"
|
|
61
61
|
}
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"node_modules/node-fetch": {
|
|
20
|
-
"version": "2.6.
|
|
21
|
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.
|
|
22
|
-
"integrity": "sha512-
|
|
20
|
+
"version": "2.6.8",
|
|
21
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz",
|
|
22
|
+
"integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"whatwg-url": "^5.0.0"
|
|
25
25
|
},
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"node-fetch": {
|
|
68
|
-
"version": "2.6.
|
|
69
|
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.
|
|
70
|
-
"integrity": "sha512-
|
|
68
|
+
"version": "2.6.8",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz",
|
|
70
|
+
"integrity": "sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==",
|
|
71
71
|
"requires": {
|
|
72
72
|
"whatwg-url": "^5.0.0"
|
|
73
73
|
}
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
|
20
20
|
},
|
|
21
21
|
"node_modules/axios": {
|
|
22
|
-
"version": "1.2.
|
|
23
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.
|
|
24
|
-
"integrity": "sha512-
|
|
22
|
+
"version": "1.2.2",
|
|
23
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.2.tgz",
|
|
24
|
+
"integrity": "sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"follow-redirects": "^1.15.0",
|
|
27
27
|
"form-data": "^4.0.0",
|
|
@@ -198,9 +198,9 @@
|
|
|
198
198
|
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
|
199
199
|
},
|
|
200
200
|
"axios": {
|
|
201
|
-
"version": "1.2.
|
|
202
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.
|
|
203
|
-
"integrity": "sha512-
|
|
201
|
+
"version": "1.2.2",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.2.tgz",
|
|
203
|
+
"integrity": "sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==",
|
|
204
204
|
"requires": {
|
|
205
205
|
"follow-redirects": "^1.15.0",
|
|
206
206
|
"form-data": "^4.0.0",
|