@@ -39,13 +39,10 @@ $ aio config --help...
39
39
<!-- commands -->
40
40
* [ ` aio config ` ] ( #aio-config )
41
41
* [ ` aio config clear ` ] ( #aio-config-clear )
42
- * [ ` aio config del KEYS... ` ] ( #aio-config-del-keys )
43
42
* [ ` aio config delete KEYS... ` ] ( #aio-config-delete-keys )
44
43
* [ ` aio config edit ` ] ( #aio-config-edit )
45
44
* [ ` aio config get KEY ` ] ( #aio-config-get-key )
46
45
* [ ` aio config list ` ] ( #aio-config-list )
47
- * [ ` aio config ls ` ] ( #aio-config-ls )
48
- * [ ` aio config rm KEYS... ` ] ( #aio-config-rm-keys )
49
46
* [ ` aio config set key 'a value' # set key to 'a value' ` ] ( #aio-config-set-key-a-value--------set-key-to-a-value )
50
47
51
48
## ` aio config `
@@ -82,7 +79,7 @@ EXAMPLES
82
79
$ aio config:clear
83
80
```
84
81
85
- _ See code: [ src/commands/config/index.ts ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/index.ts ) _
82
+ _ See code: [ src/commands/config/index.js ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/index.js ) _
86
83
87
84
## ` aio config clear `
88
85
@@ -101,27 +98,7 @@ DESCRIPTION
101
98
clears all persistent config values
102
99
```
103
100
104
- _ See code: [ src/commands/config/clear.ts] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/clear.ts ) _
105
-
106
- ## ` aio config del KEYS... `
107
-
108
- deletes persistent config values
109
-
110
- ```
111
- USAGE
112
- $ aio config del KEYS... [-l | -g]
113
-
114
- FLAGS
115
- -g, --global global config
116
- -l, --local local config
117
-
118
- DESCRIPTION
119
- deletes persistent config values
120
-
121
- ALIASES
122
- $ aio config del
123
- $ aio config rm
124
- ```
101
+ _ See code: [ src/commands/config/clear.js] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/clear.js ) _
125
102
126
103
## ` aio config delete KEYS... `
127
104
@@ -143,7 +120,7 @@ ALIASES
143
120
$ aio config rm
144
121
```
145
122
146
- _ See code: [ src/commands/config/delete.ts ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/delete.ts ) _
123
+ _ See code: [ src/commands/config/delete.js ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/delete.js ) _
147
124
148
125
## ` aio config edit `
149
126
@@ -161,7 +138,7 @@ DESCRIPTION
161
138
edit config file
162
139
```
163
140
164
- _ See code: [ src/commands/config/edit.ts ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/edit.ts ) _
141
+ _ See code: [ src/commands/config/edit.js ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/edit.js ) _
165
142
166
143
## ` aio config get KEY `
167
144
@@ -182,7 +159,7 @@ DESCRIPTION
182
159
gets a persistent config value
183
160
```
184
161
185
- _ See code: [ src/commands/config/get.ts ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/get.ts ) _
162
+ _ See code: [ src/commands/config/get.js ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/get.js ) _
186
163
187
164
## ` aio config list `
188
165
@@ -207,61 +184,7 @@ ALIASES
207
184
$ aio config ls
208
185
```
209
186
210
- _ See code: [ src/commands/config/list.ts] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/list.ts ) _
211
-
212
- ## ` aio config ls `
213
-
214
- list, get, set, delete, and edit persistent configuration data
215
-
216
- ```
217
- USAGE
218
- $ aio config ls [-l | -g] [-e] [--verbose | | [-j | -y]]
219
-
220
- FLAGS
221
- -e, --env environment variables
222
- -g, --global global config
223
- -j, --json output in json
224
- -l, --local local config
225
- -y, --yaml output in yaml
226
- --verbose show all config values
227
-
228
- DESCRIPTION
229
- list, get, set, delete, and edit persistent configuration data
230
-
231
- ALIASES
232
- $ aio config ls
233
-
234
- EXAMPLES
235
- $ aio config:list
236
-
237
- $ aio config:get KEY
238
-
239
- $ aio config:set KEY VALUE
240
-
241
- $ aio config:delete KEY
242
-
243
- $ aio config:clear
244
- ```
245
-
246
- ## ` aio config rm KEYS... `
247
-
248
- deletes persistent config values
249
-
250
- ```
251
- USAGE
252
- $ aio config rm KEYS... [-l | -g]
253
-
254
- FLAGS
255
- -g, --global global config
256
- -l, --local local config
257
-
258
- DESCRIPTION
259
- deletes persistent config values
260
-
261
- ALIASES
262
- $ aio config del
263
- $ aio config rm
264
- ```
187
+ _ See code: [ src/commands/config/list.js] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/list.js ) _
265
188
266
189
## ` aio config set key 'a value' # set key to 'a value' `
267
190
@@ -285,5 +208,5 @@ DESCRIPTION
285
208
sets a persistent config value
286
209
```
287
210
288
- _ See code: [ src/commands/config/set.ts ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/set.ts ) _
211
+ _ See code: [ src/commands/config/set.js ] ( https://github.com/adobe/aio-cli-plugin-config/blob/5.0.0/src/commands/config/set.js ) _
289
212
<!-- commandsstop -->
0 commit comments