@oclif/plugin-test-esm-1 0.7.17 → 0.7.18

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 CHANGED
@@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-esm-1
18
18
  $ esm1 COMMAND
19
19
  running command...
20
20
  $ esm1 (--version)
21
- @oclif/plugin-test-esm-1/0.7.17 linux-x64 node-v20.13.1
21
+ @oclif/plugin-test-esm-1/0.7.18 linux-x64 node-v20.13.1
22
22
  $ esm1 --help [COMMAND]
23
23
  USAGE
24
24
  $ esm1 COMMAND
@@ -30,14 +30,14 @@ USAGE
30
30
  * [`esm1 esm1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#esm1-esm1-optionalarg-defaultarg-defaultfnarg)
31
31
  * [`esm1 help [COMMAND]`](#esm1-help-command)
32
32
  * [`esm1 plugins`](#esm1-plugins)
33
- * [`esm1 plugins:install PLUGIN...`](#esm1-pluginsinstall-plugin)
33
+ * [`esm1 plugins add PLUGIN`](#esm1-plugins-add-plugin)
34
34
  * [`esm1 plugins:inspect PLUGIN...`](#esm1-pluginsinspect-plugin)
35
- * [`esm1 plugins:install PLUGIN...`](#esm1-pluginsinstall-plugin)
36
- * [`esm1 plugins:link PLUGIN`](#esm1-pluginslink-plugin)
37
- * [`esm1 plugins:uninstall PLUGIN...`](#esm1-pluginsuninstall-plugin)
35
+ * [`esm1 plugins install PLUGIN`](#esm1-plugins-install-plugin)
36
+ * [`esm1 plugins link PATH`](#esm1-plugins-link-path)
37
+ * [`esm1 plugins remove [PLUGIN]`](#esm1-plugins-remove-plugin)
38
38
  * [`esm1 plugins reset`](#esm1-plugins-reset)
39
- * [`esm1 plugins:uninstall PLUGIN...`](#esm1-pluginsuninstall-plugin)
40
- * [`esm1 plugins:uninstall PLUGIN...`](#esm1-pluginsuninstall-plugin)
39
+ * [`esm1 plugins uninstall [PLUGIN]`](#esm1-plugins-uninstall-plugin)
40
+ * [`esm1 plugins unlink [PLUGIN]`](#esm1-plugins-unlink-plugin)
41
41
  * [`esm1 plugins update`](#esm1-plugins-update)
42
42
 
43
43
  ## `esm1 esm1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`
@@ -56,7 +56,7 @@ GLOBAL FLAGS
56
56
  --json Format output as json.
57
57
  ```
58
58
 
59
- _See code: [src/commands/esm1.ts](https://github.com/oclif/plugin-test-esm-1/blob/v0.7.17/src/commands/esm1.ts)_
59
+ _See code: [src/commands/esm1.ts](https://github.com/oclif/plugin-test-esm-1/blob/v0.7.18/src/commands/esm1.ts)_
60
60
 
61
61
  ## `esm1 help [COMMAND]`
62
62
 
@@ -99,48 +99,53 @@ EXAMPLES
99
99
  $ esm1 plugins
100
100
  ```
101
101
 
102
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/index.ts)_
102
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/index.ts)_
103
103
 
104
- ## `esm1 plugins:install PLUGIN...`
104
+ ## `esm1 plugins add PLUGIN`
105
105
 
106
- Installs a plugin into the CLI.
106
+ Installs a plugin into esm1.
107
107
 
108
108
  ```
109
109
  USAGE
110
- $ esm1 plugins add plugins:install PLUGIN...
110
+ $ esm1 plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
111
111
 
112
112
  ARGUMENTS
113
113
  PLUGIN... Plugin to install.
114
114
 
115
115
  FLAGS
116
- -f, --force Run yarn install with force flag.
116
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
117
117
  -h, --help Show CLI help.
118
- -s, --silent Silences yarn output.
119
- -v, --verbose Show verbose yarn output.
118
+ -s, --silent Silences npm output.
119
+ -v, --verbose Show verbose npm output.
120
120
 
121
121
  GLOBAL FLAGS
122
122
  --json Format output as json.
123
123
 
124
124
  DESCRIPTION
125
- Installs a plugin into the CLI.
126
- Can be installed from npm or a git url.
125
+ Installs a plugin into esm1.
127
126
 
128
- Installation of a user-installed plugin will override a core plugin.
127
+ Uses bundled npm executable to install plugins into /home/runner/.local/share/esm1
129
128
 
130
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
131
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
132
- the CLI without the need to patch and update the whole CLI.
129
+ Installation of a user-installed plugin will override a core plugin.
133
130
 
131
+ Use the ESM1_NPM_LOG_LEVEL environment variable to set the npm loglevel.
132
+ Use the ESM1_NPM_REGISTRY environment variable to set the npm registry.
134
133
 
135
134
  ALIASES
136
135
  $ esm1 plugins add
137
136
 
138
137
  EXAMPLES
139
- $ esm1 plugins add myplugin
138
+ Install a plugin from npm registry.
139
+
140
+ $ esm1 plugins add myplugin
141
+
142
+ Install a plugin from a github url.
143
+
144
+ $ esm1 plugins add https://github.com/someuser/someplugin
140
145
 
141
- $ esm1 plugins add https://github.com/someuser/someplugin
146
+ Install a plugin from a github slug.
142
147
 
143
- $ esm1 plugins add someuser/someplugin
148
+ $ esm1 plugins add someuser/someplugin
144
149
  ```
145
150
 
146
151
  ## `esm1 plugins:inspect PLUGIN...`
@@ -168,59 +173,64 @@ EXAMPLES
168
173
  $ esm1 plugins inspect myplugin
169
174
  ```
170
175
 
171
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/inspect.ts)_
176
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/inspect.ts)_
172
177
 
173
- ## `esm1 plugins:install PLUGIN...`
178
+ ## `esm1 plugins install PLUGIN`
174
179
 
175
- Installs a plugin into the CLI.
180
+ Installs a plugin into esm1.
176
181
 
177
182
  ```
178
183
  USAGE
179
- $ esm1 plugins install PLUGIN...
184
+ $ esm1 plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
180
185
 
181
186
  ARGUMENTS
182
187
  PLUGIN... Plugin to install.
183
188
 
184
189
  FLAGS
185
- -f, --force Run yarn install with force flag.
190
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
186
191
  -h, --help Show CLI help.
187
- -s, --silent Silences yarn output.
188
- -v, --verbose Show verbose yarn output.
192
+ -s, --silent Silences npm output.
193
+ -v, --verbose Show verbose npm output.
189
194
 
190
195
  GLOBAL FLAGS
191
196
  --json Format output as json.
192
197
 
193
198
  DESCRIPTION
194
- Installs a plugin into the CLI.
195
- Can be installed from npm or a git url.
199
+ Installs a plugin into esm1.
196
200
 
197
- Installation of a user-installed plugin will override a core plugin.
201
+ Uses bundled npm executable to install plugins into /home/runner/.local/share/esm1
198
202
 
199
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
200
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
201
- the CLI without the need to patch and update the whole CLI.
203
+ Installation of a user-installed plugin will override a core plugin.
202
204
 
205
+ Use the ESM1_NPM_LOG_LEVEL environment variable to set the npm loglevel.
206
+ Use the ESM1_NPM_REGISTRY environment variable to set the npm registry.
203
207
 
204
208
  ALIASES
205
209
  $ esm1 plugins add
206
210
 
207
211
  EXAMPLES
208
- $ esm1 plugins install myplugin
212
+ Install a plugin from npm registry.
213
+
214
+ $ esm1 plugins install myplugin
215
+
216
+ Install a plugin from a github url.
217
+
218
+ $ esm1 plugins install https://github.com/someuser/someplugin
209
219
 
210
- $ esm1 plugins install https://github.com/someuser/someplugin
220
+ Install a plugin from a github slug.
211
221
 
212
- $ esm1 plugins install someuser/someplugin
222
+ $ esm1 plugins install someuser/someplugin
213
223
  ```
214
224
 
215
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/install.ts)_
225
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/install.ts)_
216
226
 
217
- ## `esm1 plugins:link PLUGIN`
227
+ ## `esm1 plugins link PATH`
218
228
 
219
229
  Links a plugin into the CLI for development.
220
230
 
221
231
  ```
222
232
  USAGE
223
- $ esm1 plugins link PLUGIN
233
+ $ esm1 plugins link PATH [-h] [--install] [-v]
224
234
 
225
235
  ARGUMENTS
226
236
  PATH [default: .] path to plugin
@@ -242,15 +252,15 @@ EXAMPLES
242
252
  $ esm1 plugins link myplugin
243
253
  ```
244
254
 
245
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/link.ts)_
255
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/link.ts)_
246
256
 
247
- ## `esm1 plugins:uninstall PLUGIN...`
257
+ ## `esm1 plugins remove [PLUGIN]`
248
258
 
249
259
  Removes a plugin from the CLI.
250
260
 
251
261
  ```
252
262
  USAGE
253
- $ esm1 plugins remove plugins:uninstall PLUGIN...
263
+ $ esm1 plugins remove [PLUGIN...] [-h] [-v]
254
264
 
255
265
  ARGUMENTS
256
266
  PLUGIN... plugin to uninstall
@@ -283,15 +293,15 @@ FLAGS
283
293
  --reinstall Reinstall all plugins after uninstalling.
284
294
  ```
285
295
 
286
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/reset.ts)_
296
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/reset.ts)_
287
297
 
288
- ## `esm1 plugins:uninstall PLUGIN...`
298
+ ## `esm1 plugins uninstall [PLUGIN]`
289
299
 
290
300
  Removes a plugin from the CLI.
291
301
 
292
302
  ```
293
303
  USAGE
294
- $ esm1 plugins uninstall PLUGIN...
304
+ $ esm1 plugins uninstall [PLUGIN...] [-h] [-v]
295
305
 
296
306
  ARGUMENTS
297
307
  PLUGIN... plugin to uninstall
@@ -311,15 +321,15 @@ EXAMPLES
311
321
  $ esm1 plugins uninstall myplugin
312
322
  ```
313
323
 
314
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/uninstall.ts)_
324
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/uninstall.ts)_
315
325
 
316
- ## `esm1 plugins:uninstall PLUGIN...`
326
+ ## `esm1 plugins unlink [PLUGIN]`
317
327
 
318
328
  Removes a plugin from the CLI.
319
329
 
320
330
  ```
321
331
  USAGE
322
- $ esm1 plugins unlink plugins:uninstall PLUGIN...
332
+ $ esm1 plugins unlink [PLUGIN...] [-h] [-v]
323
333
 
324
334
  ARGUMENTS
325
335
  PLUGIN... plugin to uninstall
@@ -355,5 +365,5 @@ DESCRIPTION
355
365
  Update installed plugins.
356
366
  ```
357
367
 
358
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.10/src/commands/plugins/update.ts)_
368
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/update.ts)_
359
369
  <!-- commandsstop -->
@@ -60,5 +60,5 @@
60
60
  ]
61
61
  }
62
62
  },
63
- "version": "0.7.17"
63
+ "version": "0.7.18"
64
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-esm-1",
3
- "version": "0.7.17",
3
+ "version": "0.7.18",
4
4
  "description": "Test ESM plugin",
5
5
  "author": "Salesforce",
6
6
  "bin": {
@@ -18,11 +18,11 @@
18
18
  "dependencies": {
19
19
  "@oclif/core": "^3",
20
20
  "@oclif/plugin-help": "^6",
21
- "@oclif/plugin-plugins": "^4"
21
+ "@oclif/plugin-plugins": "^5"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@oclif/prettier-config": "^0.2.1",
25
- "@oclif/test": "^3",
25
+ "@oclif/test": "^4",
26
26
  "@types/chai": "^4",
27
27
  "@types/mocha": "^10.0.6",
28
28
  "@types/node": "^16.18.97",