heroku 10.11.0-beta.0 → 10.11.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 +0 -2
- package/lib/commands/prompt.d.ts +1 -0
- package/lib/commands/prompt.js +1 -0
- package/lib/commands/repl.d.ts +1 -0
- package/lib/commands/repl.js +1 -0
- package/oclif.manifest.json +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -63,12 +63,10 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
63
63
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
64
64
|
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
|
|
65
65
|
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
66
|
-
* [`heroku prompt`](docs/prompt.md) - interactively prompt for command arguments and flags
|
|
67
66
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
68
67
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
69
68
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
70
69
|
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
71
|
-
* [`heroku repl`](docs/repl.md) - enter an interactive REPL session to run Heroku CLI commands
|
|
72
70
|
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
|
|
73
71
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
74
72
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
package/lib/commands/prompt.d.ts
CHANGED
package/lib/commands/prompt.js
CHANGED
|
@@ -8,6 +8,7 @@ class Prompt extends core_1.Command {
|
|
|
8
8
|
}
|
|
9
9
|
exports.default = Prompt;
|
|
10
10
|
Prompt.description = 'interactively prompt for command arguments and flags';
|
|
11
|
+
Prompt.hidden = true;
|
|
11
12
|
Prompt.examples = [
|
|
12
13
|
'$ heroku apps:info --prompt',
|
|
13
14
|
'$ heroku config:set --prompt',
|
package/lib/commands/repl.d.ts
CHANGED
package/lib/commands/repl.js
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -216,6 +216,7 @@
|
|
|
216
216
|
],
|
|
217
217
|
"flags": {},
|
|
218
218
|
"hasDynamicHelp": false,
|
|
219
|
+
"hidden": true,
|
|
219
220
|
"hiddenAliases": [],
|
|
220
221
|
"id": "prompt",
|
|
221
222
|
"pluginAlias": "heroku",
|
|
@@ -343,6 +344,7 @@
|
|
|
343
344
|
],
|
|
344
345
|
"flags": {},
|
|
345
346
|
"hasDynamicHelp": false,
|
|
347
|
+
"hidden": true,
|
|
346
348
|
"hiddenAliases": [],
|
|
347
349
|
"id": "repl",
|
|
348
350
|
"pluginAlias": "heroku",
|
|
@@ -15003,5 +15005,5 @@
|
|
|
15003
15005
|
]
|
|
15004
15006
|
}
|
|
15005
15007
|
},
|
|
15006
|
-
"version": "10.11.0
|
|
15008
|
+
"version": "10.11.0"
|
|
15007
15009
|
}
|
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.11.0
|
|
4
|
+
"version": "10.11.0",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -400,5 +400,5 @@
|
|
|
400
400
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
401
401
|
},
|
|
402
402
|
"types": "lib/index.d.ts",
|
|
403
|
-
"gitHead": "
|
|
403
|
+
"gitHead": "0580c4382727bee72879f74b8e5cf8b2d0772a8b"
|
|
404
404
|
}
|