netlify-cli 9.6.4 → 9.6.5
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 +2 -2
- package/package.json +2 -1
- package/src/commands/main.js +1 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.5",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "9.6.
|
|
9
|
+
"version": "9.6.5",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "9.6.
|
|
4
|
+
"version": "9.6.5",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Abraham Schilling <AbrahamSchilling@gmail.com> (https://gitlab.com/n4bb12)",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Gergely Nemeth (https://twitter.com/nthgergo)",
|
|
47
47
|
"HonkingGoose",
|
|
48
48
|
"Ian Martorell <ianmartorell@gmail.com>",
|
|
49
|
+
"Ibrahima",
|
|
49
50
|
"Jacob Schatz",
|
|
50
51
|
"Jake Jarvis <jake@jarv.is> (https://twitter.com/jakejarvis)",
|
|
51
52
|
"Jakob Warkotsch <j.warkotsch@gmail.com>",
|
package/src/commands/main.js
CHANGED
|
@@ -143,7 +143,7 @@ const mainCommand = async function (options, command) {
|
|
|
143
143
|
}, SUGGESTION_TIMEOUT)
|
|
144
144
|
|
|
145
145
|
// eslint-disable-next-line promise/catch-or-return
|
|
146
|
-
prompt.then((value) => resolve(value))
|
|
146
|
+
prompt.then((value) => resolve(value.suggestion))
|
|
147
147
|
})
|
|
148
148
|
// create new log line
|
|
149
149
|
log()
|