heroku 10.0.3-alpha.1 → 10.0.3-alpha.3
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/bin/run +3 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/bin/run
CHANGED
|
@@ -58,8 +58,10 @@ const main = async () => {
|
|
|
58
58
|
if (flags.prompt) {
|
|
59
59
|
delete flags.prompt
|
|
60
60
|
await promptUser(config, commandName, args, flags)
|
|
61
|
+
await oclif.run([commandName, ...args], config)
|
|
62
|
+
} else {
|
|
63
|
+
await oclif.run(undefined, config)
|
|
61
64
|
}
|
|
62
|
-
await oclif.run(undefined, config)
|
|
63
65
|
await oclifFlush()
|
|
64
66
|
} catch (error) {
|
|
65
67
|
// capture any errors raised by oclif
|
package/oclif.manifest.json
CHANGED
|
@@ -14450,5 +14450,5 @@
|
|
|
14450
14450
|
]
|
|
14451
14451
|
}
|
|
14452
14452
|
},
|
|
14453
|
-
"version": "10.0.3-alpha.
|
|
14453
|
+
"version": "10.0.3-alpha.3"
|
|
14454
14454
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.0.3-alpha.
|
|
4
|
+
"version": "10.0.3-alpha.3",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -391,5 +391,5 @@
|
|
|
391
391
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
392
392
|
},
|
|
393
393
|
"types": "lib/index.d.ts",
|
|
394
|
-
"gitHead": "
|
|
394
|
+
"gitHead": "ca78edeb011baec69aa41adac799c1de35264dfb"
|
|
395
395
|
}
|