@oclif/plugin-test-esbuild 0.4.19 → 0.4.21

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
@@ -17,7 +17,7 @@ $ npm install -g @oclif/plugin-test-esbuild
17
17
  $ bundle COMMAND
18
18
  running command...
19
19
  $ bundle (--version)
20
- @oclif/plugin-test-esbuild/0.4.19 linux-x64 node-v20.13.1
20
+ @oclif/plugin-test-esbuild/0.4.21 linux-x64 node-v20.13.1
21
21
  $ bundle --help [COMMAND]
22
22
  USAGE
23
23
  $ bundle COMMAND
@@ -32,14 +32,14 @@ USAGE
32
32
  * [`bundle hello alias`](#bundle-hello-alias)
33
33
  * [`bundle hello world`](#bundle-hello-world)
34
34
  * [`bundle plugins`](#bundle-plugins)
35
- * [`bundle plugins:install PLUGIN...`](#bundle-pluginsinstall-plugin)
35
+ * [`bundle plugins add PLUGIN`](#bundle-plugins-add-plugin)
36
36
  * [`bundle plugins:inspect PLUGIN...`](#bundle-pluginsinspect-plugin)
37
- * [`bundle plugins:install PLUGIN...`](#bundle-pluginsinstall-plugin)
38
- * [`bundle plugins:link PLUGIN`](#bundle-pluginslink-plugin)
39
- * [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin)
37
+ * [`bundle plugins install PLUGIN`](#bundle-plugins-install-plugin)
38
+ * [`bundle plugins link PATH`](#bundle-plugins-link-path)
39
+ * [`bundle plugins remove [PLUGIN]`](#bundle-plugins-remove-plugin)
40
40
  * [`bundle plugins reset`](#bundle-plugins-reset)
41
- * [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin)
42
- * [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin)
41
+ * [`bundle plugins uninstall [PLUGIN]`](#bundle-plugins-uninstall-plugin)
42
+ * [`bundle plugins unlink [PLUGIN]`](#bundle-plugins-unlink-plugin)
43
43
  * [`bundle plugins update`](#bundle-plugins-update)
44
44
 
45
45
  ## `bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`
@@ -149,46 +149,51 @@ EXAMPLES
149
149
  $ bundle plugins
150
150
  ```
151
151
 
152
- ## `bundle plugins:install PLUGIN...`
152
+ ## `bundle plugins add PLUGIN`
153
153
 
154
- Installs a plugin into the CLI.
154
+ Installs a plugin into bundle.
155
155
 
156
156
  ```
157
157
  USAGE
158
- $ bundle plugins add plugins:install PLUGIN...
158
+ $ bundle plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
159
159
 
160
160
  ARGUMENTS
161
161
  PLUGIN... Plugin to install.
162
162
 
163
163
  FLAGS
164
- -f, --force Run yarn install with force flag.
164
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
165
165
  -h, --help Show CLI help.
166
- -s, --silent Silences yarn output.
167
- -v, --verbose Show verbose yarn output.
166
+ -s, --silent Silences npm output.
167
+ -v, --verbose Show verbose npm output.
168
168
 
169
169
  GLOBAL FLAGS
170
170
  --json Format output as json.
171
171
 
172
172
  DESCRIPTION
173
- Installs a plugin into the CLI.
174
- Can be installed from npm or a git url.
173
+ Installs a plugin into bundle.
175
174
 
176
- Installation of a user-installed plugin will override a core plugin.
175
+ Uses bundled npm executable to install plugins into /home/runner/.local/share/bundle
177
176
 
178
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
179
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
180
- the CLI without the need to patch and update the whole CLI.
177
+ Installation of a user-installed plugin will override a core plugin.
181
178
 
179
+ Use the BUNDLE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
180
+ Use the BUNDLE_NPM_REGISTRY environment variable to set the npm registry.
182
181
 
183
182
  ALIASES
184
183
  $ bundle plugins add
185
184
 
186
185
  EXAMPLES
187
- $ bundle plugins add myplugin
186
+ Install a plugin from npm registry.
187
+
188
+ $ bundle plugins add myplugin
189
+
190
+ Install a plugin from a github url.
191
+
192
+ $ bundle plugins add https://github.com/someuser/someplugin
188
193
 
189
- $ bundle plugins add https://github.com/someuser/someplugin
194
+ Install a plugin from a github slug.
190
195
 
191
- $ bundle plugins add someuser/someplugin
196
+ $ bundle plugins add someuser/someplugin
192
197
  ```
193
198
 
194
199
  ## `bundle plugins:inspect PLUGIN...`
@@ -216,55 +221,60 @@ EXAMPLES
216
221
  $ bundle plugins inspect myplugin
217
222
  ```
218
223
 
219
- ## `bundle plugins:install PLUGIN...`
224
+ ## `bundle plugins install PLUGIN`
220
225
 
221
- Installs a plugin into the CLI.
226
+ Installs a plugin into bundle.
222
227
 
223
228
  ```
224
229
  USAGE
225
- $ bundle plugins install PLUGIN...
230
+ $ bundle plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
226
231
 
227
232
  ARGUMENTS
228
233
  PLUGIN... Plugin to install.
229
234
 
230
235
  FLAGS
231
- -f, --force Run yarn install with force flag.
236
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
232
237
  -h, --help Show CLI help.
233
- -s, --silent Silences yarn output.
234
- -v, --verbose Show verbose yarn output.
238
+ -s, --silent Silences npm output.
239
+ -v, --verbose Show verbose npm output.
235
240
 
236
241
  GLOBAL FLAGS
237
242
  --json Format output as json.
238
243
 
239
244
  DESCRIPTION
240
- Installs a plugin into the CLI.
241
- Can be installed from npm or a git url.
245
+ Installs a plugin into bundle.
242
246
 
243
- Installation of a user-installed plugin will override a core plugin.
247
+ Uses bundled npm executable to install plugins into /home/runner/.local/share/bundle
244
248
 
245
- e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
246
- will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
247
- the CLI without the need to patch and update the whole CLI.
249
+ Installation of a user-installed plugin will override a core plugin.
248
250
 
251
+ Use the BUNDLE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
252
+ Use the BUNDLE_NPM_REGISTRY environment variable to set the npm registry.
249
253
 
250
254
  ALIASES
251
255
  $ bundle plugins add
252
256
 
253
257
  EXAMPLES
254
- $ bundle plugins install myplugin
258
+ Install a plugin from npm registry.
259
+
260
+ $ bundle plugins install myplugin
261
+
262
+ Install a plugin from a github url.
263
+
264
+ $ bundle plugins install https://github.com/someuser/someplugin
255
265
 
256
- $ bundle plugins install https://github.com/someuser/someplugin
266
+ Install a plugin from a github slug.
257
267
 
258
- $ bundle plugins install someuser/someplugin
268
+ $ bundle plugins install someuser/someplugin
259
269
  ```
260
270
 
261
- ## `bundle plugins:link PLUGIN`
271
+ ## `bundle plugins link PATH`
262
272
 
263
273
  Links a plugin into the CLI for development.
264
274
 
265
275
  ```
266
276
  USAGE
267
- $ bundle plugins link PLUGIN
277
+ $ bundle plugins link PATH [-h] [--install] [-v]
268
278
 
269
279
  ARGUMENTS
270
280
  PATH [default: .] path to plugin
@@ -286,13 +296,13 @@ EXAMPLES
286
296
  $ bundle plugins link myplugin
287
297
  ```
288
298
 
289
- ## `bundle plugins:uninstall PLUGIN...`
299
+ ## `bundle plugins remove [PLUGIN]`
290
300
 
291
301
  Removes a plugin from the CLI.
292
302
 
293
303
  ```
294
304
  USAGE
295
- $ bundle plugins remove plugins:uninstall PLUGIN...
305
+ $ bundle plugins remove [PLUGIN...] [-h] [-v]
296
306
 
297
307
  ARGUMENTS
298
308
  PLUGIN... plugin to uninstall
@@ -325,13 +335,13 @@ FLAGS
325
335
  --reinstall Reinstall all plugins after uninstalling.
326
336
  ```
327
337
 
328
- ## `bundle plugins:uninstall PLUGIN...`
338
+ ## `bundle plugins uninstall [PLUGIN]`
329
339
 
330
340
  Removes a plugin from the CLI.
331
341
 
332
342
  ```
333
343
  USAGE
334
- $ bundle plugins uninstall PLUGIN...
344
+ $ bundle plugins uninstall [PLUGIN...] [-h] [-v]
335
345
 
336
346
  ARGUMENTS
337
347
  PLUGIN... plugin to uninstall
@@ -351,13 +361,13 @@ EXAMPLES
351
361
  $ bundle plugins uninstall myplugin
352
362
  ```
353
363
 
354
- ## `bundle plugins:uninstall PLUGIN...`
364
+ ## `bundle plugins unlink [PLUGIN]`
355
365
 
356
366
  Removes a plugin from the CLI.
357
367
 
358
368
  ```
359
369
  USAGE
360
- $ bundle plugins unlink plugins:uninstall PLUGIN...
370
+ $ bundle plugins unlink [PLUGIN...] [-h] [-v]
361
371
 
362
372
  ARGUMENTS
363
373
  PLUGIN... plugin to uninstall