Skip to content

Commit a34d14f

Browse files
committed
chore: Prerelease updates
1 parent 21207d3 commit a34d14f

File tree

3 files changed

+1303
-36
lines changed

3 files changed

+1303
-36
lines changed

README.md

+45-18
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ $ heroku plugins:install @heroku-cli/plugin-addons-admin
2525
$ npm install -g @heroku-cli/plugin-addons-admin
2626
$ heroku COMMAND
2727
running command...
28-
$ heroku (-v|--version|version)
29-
@heroku-cli/plugin-addons-admin/2.4.0 darwin-x64 node-v16.20.2
28+
$ heroku (--version)
29+
@heroku-cli/plugin-addons-admin/2.4.0 darwin-x64 node-v20.18.2
3030
$ heroku --help [COMMAND]
3131
USAGE
3232
$ heroku COMMAND
@@ -42,7 +42,7 @@ Follow the [Developing CLI Plugins](https://devcenter.heroku.com/articles/develo
4242
<!-- commands -->
4343
* [`heroku addons:admin:manifest:diff`](#heroku-addonsadminmanifestdiff)
4444
* [`heroku addons:admin:manifest:generate`](#heroku-addonsadminmanifestgenerate)
45-
* [`heroku addons:admin:manifest:pull [SLUG]`](#heroku-addonsadminmanifestpull-slug)
45+
* [`heroku addons:admin:manifest:pull SLUG`](#heroku-addonsadminmanifestpull-slug)
4646
* [`heroku addons:admin:manifest:push`](#heroku-addonsadminmanifestpush)
4747
* [`heroku addons:admin:manifests [SLUG]`](#heroku-addonsadminmanifests-slug)
4848
* [`heroku addons:admin:manifests:info [SLUG]`](#heroku-addonsadminmanifestsinfo-slug)
@@ -55,6 +55,9 @@ compares remote manifest to local manifest and finds differences
5555
```
5656
USAGE
5757
$ heroku addons:admin:manifest:diff
58+
59+
DESCRIPTION
60+
compares remote manifest to local manifest and finds differences
5861
```
5962

6063
_See code: [src/commands/addons/admin/manifest/diff.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/diff.ts)_
@@ -65,31 +68,37 @@ generate a manifest template
6568

6669
```
6770
USAGE
68-
$ heroku addons:admin:manifest:generate
71+
$ heroku addons:admin:manifest:generate [-a <value>] [-s <value>]
72+
73+
FLAGS
74+
-a, --addon=<value> add-on name (name displayed on addon dashboard)
75+
-s, --slug=<value> slugname/manifest id
6976
70-
OPTIONS
71-
-a, --addon=addon add-on name (name displayed on addon dashboard)
72-
-s, --slug=slug slugname/manifest id
77+
DESCRIPTION
78+
generate a manifest template
7379
74-
EXAMPLE
80+
EXAMPLES
7581
$ heroku addons:admin:generate
7682
The file has been saved!
7783
```
7884

7985
_See code: [src/commands/addons/admin/manifest/generate.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/generate.ts)_
8086

81-
## `heroku addons:admin:manifest:pull [SLUG]`
87+
## `heroku addons:admin:manifest:pull SLUG`
8288

8389
pull a manifest for a given slug
8490

8591
```
8692
USAGE
87-
$ heroku addons:admin:manifest:pull [SLUG]
93+
$ heroku addons:admin:manifest:pull SLUG
8894
8995
ARGUMENTS
9096
SLUG slug name of add-on
9197
92-
EXAMPLE
98+
DESCRIPTION
99+
pull a manifest for a given slug
100+
101+
EXAMPLES
93102
$ heroku addons:admin:manifest:pull testing-123
94103
...
95104
Fetching add-on manifest for testing-123... done
@@ -106,7 +115,10 @@ update remote manifest
106115
USAGE
107116
$ heroku addons:admin:manifest:push
108117
109-
EXAMPLE
118+
DESCRIPTION
119+
update remote manifest
120+
121+
EXAMPLES
110122
$ heroku addons:admin:manifest:push
111123
...
112124
Pushing manifest... done
@@ -122,6 +134,12 @@ list manifest history
122134
```
123135
USAGE
124136
$ heroku addons:admin:manifests [SLUG]
137+
138+
ARGUMENTS
139+
SLUG slug name of add-on
140+
141+
DESCRIPTION
142+
list manifest history
125143
```
126144

127145
_See code: [src/commands/addons/admin/manifests.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests.ts)_
@@ -132,10 +150,16 @@ show an individual history manifest
132150

133151
```
134152
USAGE
135-
$ heroku addons:admin:manifests:info [SLUG]
153+
$ heroku addons:admin:manifests:info [SLUG] -m <value>
154+
155+
ARGUMENTS
156+
SLUG slug name of add-on
157+
158+
FLAGS
159+
-m, --manifest=<value> (required) manifest history id
136160
137-
OPTIONS
138-
-m, --manifest=manifest (required) manifest history id
161+
DESCRIPTION
162+
show an individual history manifest
139163
```
140164

141165
_See code: [src/commands/addons/admin/manifests/info.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests/info.ts)_
@@ -151,10 +175,13 @@ USAGE
151175
ARGUMENTS
152176
SLUG slug name of add-on
153177
154-
EXAMPLE
178+
DESCRIPTION
179+
open add-on dashboard
180+
181+
EXAMPLES
155182
$ heroku addons:admin:open
156-
Checking addon-manifest.json... done
157-
Opening https://addons-next.heroku.com/addons/testing-123... done
183+
Checking addon-manifest.json... done
184+
Opening https://addons-next.heroku.com/addons/testing-123... done
158185
```
159186

160187
_See code: [src/commands/addons/admin/open.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/open.ts)_

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"eslint-config-oclif-typescript": "^3.0.26",
3636
"mocha": "^10.7.3",
3737
"nock": "^13.5.6",
38+
"np": "^10.2.0",
3839
"nyc": "^17.1.0",
3940
"oclif": "4.14.36",
4041
"sinon": "^18.0.0",
@@ -47,8 +48,7 @@
4748
},
4849
"files": [
4950
"/lib",
50-
"/oclif.manifest.json",
51-
"/yarn.lock"
51+
"/oclif.manifest.json"
5252
],
5353
"homepage": "https://github.com/heroku/heroku-cli-addons-admin",
5454
"keywords": [

0 commit comments

Comments
 (0)