@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 +55 -45
- package/dist/{chunk-XMMEVJHV.js → chunk-24X2WV72.js} +1257 -1302
- package/dist/{chunk-BFB7DX4H.js → chunk-4P6LCYSK.js} +5 -3
- package/dist/{chunk-DQOR6OMF.js → chunk-NYAOQONU.js} +5 -3
- package/dist/{chunk-QTRAB6EQ.js → chunk-ROBJRQRG.js} +5 -3
- package/dist/chunk-RRP6KXWN.js +54 -0
- package/dist/{chunk-QWDKXXHB.js → chunk-WBL2ZEOX.js} +5 -3
- package/dist/commands/esbuild.js +3 -2
- package/dist/commands/hello/index.js +3 -2
- package/dist/commands/hello/world.js +3 -2
- package/dist/hooks/init/init.js +3 -2
- package/dist/index.js +1328 -1862
- package/dist/lib-ZFTB4C3N.js +259 -0
- package/dist/npa-FUCICWXG.js +4907 -0
- package/oclif.manifest.json +18 -11
- package/package.json +6 -6
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.
|
|
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
|
|
35
|
+
* [`bundle plugins add PLUGIN`](#bundle-plugins-add-plugin)
|
|
36
36
|
* [`bundle plugins:inspect PLUGIN...`](#bundle-pluginsinspect-plugin)
|
|
37
|
-
* [`bundle plugins
|
|
38
|
-
* [`bundle plugins
|
|
39
|
-
* [`bundle plugins
|
|
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
|
|
42
|
-
* [`bundle plugins
|
|
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
|
|
152
|
+
## `bundle plugins add PLUGIN`
|
|
153
153
|
|
|
154
|
-
Installs a plugin into
|
|
154
|
+
Installs a plugin into bundle.
|
|
155
155
|
|
|
156
156
|
```
|
|
157
157
|
USAGE
|
|
158
|
-
$ bundle plugins add
|
|
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
|
|
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
|
|
167
|
-
-v, --verbose Show verbose
|
|
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
|
|
174
|
-
Can be installed from npm or a git url.
|
|
173
|
+
Installs a plugin into bundle.
|
|
175
174
|
|
|
176
|
-
|
|
175
|
+
Uses bundled npm executable to install plugins into /home/runner/.local/share/bundle
|
|
177
176
|
|
|
178
|
-
|
|
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
|
-
|
|
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
|
-
|
|
194
|
+
Install a plugin from a github slug.
|
|
190
195
|
|
|
191
|
-
|
|
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
|
|
224
|
+
## `bundle plugins install PLUGIN`
|
|
220
225
|
|
|
221
|
-
Installs a plugin into
|
|
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
|
|
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
|
|
234
|
-
-v, --verbose Show verbose
|
|
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
|
|
241
|
-
Can be installed from npm or a git url.
|
|
245
|
+
Installs a plugin into bundle.
|
|
242
246
|
|
|
243
|
-
|
|
247
|
+
Uses bundled npm executable to install plugins into /home/runner/.local/share/bundle
|
|
244
248
|
|
|
245
|
-
|
|
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
|
-
|
|
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
|
-
|
|
266
|
+
Install a plugin from a github slug.
|
|
257
267
|
|
|
258
|
-
|
|
268
|
+
$ bundle plugins install someuser/someplugin
|
|
259
269
|
```
|
|
260
270
|
|
|
261
|
-
## `bundle plugins
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
370
|
+
$ bundle plugins unlink [PLUGIN...] [-h] [-v]
|
|
361
371
|
|
|
362
372
|
ARGUMENTS
|
|
363
373
|
PLUGIN... plugin to uninstall
|