netlify-cli 10.10.0 → 10.10.1
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 +1866 -924
- package/package.json +9 -7
- package/src/commands/dev/dev.js +3 -1
- package/src/functions-templates/javascript/stripe-charge/package-lock.json +6 -6
- package/src/functions-templates/javascript/stripe-subscription/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.toml +1 -1
- package/src/functions-templates/typescript/hello-world/package-lock.json +6 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "10.10.
|
|
4
|
+
"version": "10.10.1",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Abraham Schilling <AbrahamSchilling@gmail.com> (https://gitlab.com/n4bb12)",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"James George (https://twitter.com/james_madhacks)",
|
|
59
59
|
"Jason Barry (https://twitter.com/jasbarry)",
|
|
60
60
|
"Jason Lengstorf <jason@lengstorf.com> (https://twitter.com/jlengstorf)",
|
|
61
|
+
"Jenae Janzen",
|
|
61
62
|
"Jeremy Monson (www.surfline.com)",
|
|
62
63
|
"Jessica Parsons",
|
|
63
64
|
"Jhey Tompkins (https://twitter.com/jh3yy)",
|
|
@@ -77,6 +78,7 @@
|
|
|
77
78
|
"Liran Tal <liran.tal@gmail.com> (https://twitter.com/liran_tal)",
|
|
78
79
|
"Louis DeScioli (https://twitter.com/descioli)",
|
|
79
80
|
"Lukas Holzer <lukas.holzer@netlify.com> (https://twitter.com/luka5c0m)",
|
|
81
|
+
"Marc Littlemore (https://twitter.com/marclittlemore)",
|
|
80
82
|
"Marcus Weiner",
|
|
81
83
|
"Mark Bello <mark@markbello.dev> (https://markbello.dev)",
|
|
82
84
|
"Mathias Biilmann <matt@netlify.com> (https://twitter.com/biilmann)",
|
|
@@ -216,13 +218,13 @@
|
|
|
216
218
|
"prettier": "--ignore-path .gitignore --loglevel=warn \"{src,tools,scripts,site,tests,.github}/**/*.{mjs,cjs,js,md,yml,json,html}\" \"*.{mjs,cjs,js,yml,json,html}\" \".*.{mjs,cjs,js,yml,json,html}\" \"!CHANGELOG.md\" \"!npm-shrinkwrap.json\" \"!**/*/package-lock.json\" \"!.github/**/*.md\""
|
|
217
219
|
},
|
|
218
220
|
"dependencies": {
|
|
219
|
-
"@netlify/build": "^27.4.
|
|
221
|
+
"@netlify/build": "^27.4.1",
|
|
220
222
|
"@netlify/config": "^18.1.1",
|
|
221
|
-
"@netlify/edge-bundler": "^1.
|
|
222
|
-
"@netlify/framework-info": "^9.1.
|
|
223
|
+
"@netlify/edge-bundler": "^1.6.0",
|
|
224
|
+
"@netlify/framework-info": "^9.1.1",
|
|
223
225
|
"@netlify/local-functions-proxy": "^1.1.1",
|
|
224
|
-
"@netlify/plugins-list": "^6.
|
|
225
|
-
"@netlify/zip-it-and-ship-it": "^5.13.
|
|
226
|
+
"@netlify/plugins-list": "^6.35.0",
|
|
227
|
+
"@netlify/zip-it-and-ship-it": "^5.13.1",
|
|
226
228
|
"@octokit/rest": "^18.0.0",
|
|
227
229
|
"@sindresorhus/slugify": "^1.1.0",
|
|
228
230
|
"ansi-escapes": "^5.0.0",
|
|
@@ -327,7 +329,7 @@
|
|
|
327
329
|
},
|
|
328
330
|
"devDependencies": {
|
|
329
331
|
"@babel/preset-react": "^7.12.13",
|
|
330
|
-
"@netlify/eslint-config-node": "^
|
|
332
|
+
"@netlify/eslint-config-node": "^7.0.0",
|
|
331
333
|
"ava": "^4.0.0",
|
|
332
334
|
"c8": "^7.11.0",
|
|
333
335
|
"eslint-plugin-sort-destructure-keys": "^1.3.5",
|
package/src/commands/dev/dev.js
CHANGED
|
@@ -198,6 +198,8 @@ const startFrameworkServer = async function ({ settings }) {
|
|
|
198
198
|
try {
|
|
199
199
|
const open = await waitPort({
|
|
200
200
|
port: settings.frameworkPort,
|
|
201
|
+
// Cannot use `localhost` as it may point to IPv4 or IPv6 depending on node version and OS
|
|
202
|
+
host: '127.0.0.1',
|
|
201
203
|
output: 'silent',
|
|
202
204
|
timeout: FRAMEWORK_PORT_TIMEOUT,
|
|
203
205
|
...(settings.pollingStrategies.includes('HTTP') && { protocol: 'http' }),
|
|
@@ -619,7 +621,7 @@ const createDevCommand = (program) => {
|
|
|
619
621
|
.addOption(
|
|
620
622
|
new Option(
|
|
621
623
|
'--country <geoCountry>',
|
|
622
|
-
'Two-letter country code (ISO 3166-1 alpha-2, https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) to use as mock geolocation (enables --geo=mock
|
|
624
|
+
'Two-letter country code (ISO 3166-1 alpha-2, https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) to use as mock geolocation (enables --geo=mock automatically)',
|
|
623
625
|
).argParser(validateGeoCountryCode),
|
|
624
626
|
)
|
|
625
627
|
.addOption(
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
107
|
"node_modules/stripe": {
|
|
108
|
-
"version": "9.
|
|
109
|
-
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.
|
|
110
|
-
"integrity": "sha512-
|
|
108
|
+
"version": "9.13.0",
|
|
109
|
+
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.13.0.tgz",
|
|
110
|
+
"integrity": "sha512-PSxYaoaIoFwziNR4dmR6uw20UUmOM9ixtd8fML/gRWlPHsqi3FSGEszR//AttRjihRj+1SfjI5V/x6hhQZBTUA==",
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@types/node": ">=8.1.0",
|
|
113
113
|
"qs": "^6.10.3"
|
|
@@ -184,9 +184,9 @@
|
|
|
184
184
|
}
|
|
185
185
|
},
|
|
186
186
|
"stripe": {
|
|
187
|
-
"version": "9.
|
|
188
|
-
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.
|
|
189
|
-
"integrity": "sha512-
|
|
187
|
+
"version": "9.13.0",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.13.0.tgz",
|
|
189
|
+
"integrity": "sha512-PSxYaoaIoFwziNR4dmR6uw20UUmOM9ixtd8fML/gRWlPHsqi3FSGEszR//AttRjihRj+1SfjI5V/x6hhQZBTUA==",
|
|
190
190
|
"requires": {
|
|
191
191
|
"@types/node": ">=8.1.0",
|
|
192
192
|
"qs": "^6.10.3"
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
107
|
"node_modules/stripe": {
|
|
108
|
-
"version": "9.
|
|
109
|
-
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.
|
|
110
|
-
"integrity": "sha512-
|
|
108
|
+
"version": "9.13.0",
|
|
109
|
+
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.13.0.tgz",
|
|
110
|
+
"integrity": "sha512-PSxYaoaIoFwziNR4dmR6uw20UUmOM9ixtd8fML/gRWlPHsqi3FSGEszR//AttRjihRj+1SfjI5V/x6hhQZBTUA==",
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@types/node": ">=8.1.0",
|
|
113
113
|
"qs": "^6.10.3"
|
|
@@ -184,9 +184,9 @@
|
|
|
184
184
|
}
|
|
185
185
|
},
|
|
186
186
|
"stripe": {
|
|
187
|
-
"version": "9.
|
|
188
|
-
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.
|
|
189
|
-
"integrity": "sha512-
|
|
187
|
+
"version": "9.13.0",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/stripe/-/stripe-9.13.0.tgz",
|
|
189
|
+
"integrity": "sha512-PSxYaoaIoFwziNR4dmR6uw20UUmOM9ixtd8fML/gRWlPHsqi3FSGEszR//AttRjihRj+1SfjI5V/x6hhQZBTUA==",
|
|
190
190
|
"requires": {
|
|
191
191
|
"@types/node": ">=8.1.0",
|
|
192
192
|
"qs": "^6.10.3"
|
|
@@ -158,9 +158,9 @@
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
"node_modules/qs": {
|
|
161
|
-
"version": "6.
|
|
162
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.
|
|
163
|
-
"integrity": "sha512-
|
|
161
|
+
"version": "6.11.0",
|
|
162
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
|
|
163
|
+
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
|
|
164
164
|
"dependencies": {
|
|
165
165
|
"side-channel": "^1.0.4"
|
|
166
166
|
},
|
|
@@ -284,9 +284,9 @@
|
|
|
284
284
|
"integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g=="
|
|
285
285
|
},
|
|
286
286
|
"qs": {
|
|
287
|
-
"version": "6.
|
|
288
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.
|
|
289
|
-
"integrity": "sha512-
|
|
287
|
+
"version": "6.11.0",
|
|
288
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
|
|
289
|
+
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
|
|
290
290
|
"requires": {
|
|
291
291
|
"side-channel": "^1.0.4"
|
|
292
292
|
}
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@types/node": {
|
|
29
|
-
"version": "14.18.
|
|
30
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.
|
|
31
|
-
"integrity": "sha512-
|
|
29
|
+
"version": "14.18.22",
|
|
30
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.22.tgz",
|
|
31
|
+
"integrity": "sha512-qzaYbXVzin6EPjghf/hTdIbnVW1ErMx8rPzwRNJhlbyJhu2SyqlvjGOY/tbUt6VFyzg56lROcOeSQRInpt63Yw=="
|
|
32
32
|
},
|
|
33
33
|
"node_modules/is-promise": {
|
|
34
34
|
"version": "4.0.0",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"@types/node": {
|
|
61
|
-
"version": "14.18.
|
|
62
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.
|
|
63
|
-
"integrity": "sha512-
|
|
61
|
+
"version": "14.18.22",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.22.tgz",
|
|
63
|
+
"integrity": "sha512-qzaYbXVzin6EPjghf/hTdIbnVW1ErMx8rPzwRNJhlbyJhu2SyqlvjGOY/tbUt6VFyzg56lROcOeSQRInpt63Yw=="
|
|
64
64
|
},
|
|
65
65
|
"is-promise": {
|
|
66
66
|
"version": "4.0.0",
|