@oclif/plugin-test-esbuild 0.2.0 → 0.2.1
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 +4 -4
- package/dist/index.js +3 -2
- package/oclif.manifest.json +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-esbuild
|
|
|
18
18
|
$ bundle COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ bundle (--version)
|
|
21
|
-
@oclif/plugin-test-esbuild/0.2.
|
|
21
|
+
@oclif/plugin-test-esbuild/0.2.1 linux-x64 node-v20.11.0
|
|
22
22
|
$ bundle --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ bundle COMMAND
|
|
@@ -27,7 +27,7 @@ USAGE
|
|
|
27
27
|
<!-- usagestop -->
|
|
28
28
|
# Commands
|
|
29
29
|
<!-- commands -->
|
|
30
|
-
* [`bundle esbuild [
|
|
30
|
+
* [`bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#bundle-esbuild-optionalarg-defaultarg-defaultfnarg)
|
|
31
31
|
* [`bundle hello PERSON`](#bundle-hello-person)
|
|
32
32
|
* [`bundle hello alias`](#bundle-hello-alias)
|
|
33
33
|
* [`bundle hello world`](#bundle-hello-world)
|
|
@@ -43,11 +43,11 @@ USAGE
|
|
|
43
43
|
* [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin-2)
|
|
44
44
|
* [`bundle plugins update`](#bundle-plugins-update)
|
|
45
45
|
|
|
46
|
-
## `bundle esbuild [
|
|
46
|
+
## `bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`
|
|
47
47
|
|
|
48
48
|
```
|
|
49
49
|
USAGE
|
|
50
|
-
$ bundle esbuild [
|
|
50
|
+
$ bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--json] [--defaultFnString <value>]
|
|
51
51
|
[--defaultString <value>] [--optionalString <value>]
|
|
52
52
|
|
|
53
53
|
FLAGS
|
package/dist/index.js
CHANGED
|
@@ -230576,13 +230576,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
230576
230576
|
var import_core = __toESM(require_lib2());
|
|
230577
230577
|
var ESBuild = class _ESBuild extends import_core.Command {
|
|
230578
230578
|
static args = {
|
|
230579
|
+
optionalArg: import_core.Args.string(),
|
|
230580
|
+
// eslint-disable-next-line perfectionist/sort-objects
|
|
230579
230581
|
defaultArg: import_core.Args.string({
|
|
230580
230582
|
default: "simple string default"
|
|
230581
230583
|
}),
|
|
230582
230584
|
defaultFnArg: import_core.Args.string({
|
|
230583
230585
|
default: async () => "async fn default"
|
|
230584
|
-
})
|
|
230585
|
-
optionalArg: import_core.Args.string()
|
|
230586
|
+
})
|
|
230586
230587
|
};
|
|
230587
230588
|
static enableJsonFlag = true;
|
|
230588
230589
|
static flags = {
|
package/oclif.manifest.json
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
"esbuild": {
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {
|
|
6
|
+
"optionalArg": {
|
|
7
|
+
"name": "optionalArg"
|
|
8
|
+
},
|
|
6
9
|
"defaultArg": {
|
|
7
10
|
"default": "simple string default",
|
|
8
11
|
"name": "defaultArg"
|
|
@@ -10,9 +13,6 @@
|
|
|
10
13
|
"defaultFnArg": {
|
|
11
14
|
"default": "async fn default",
|
|
12
15
|
"name": "defaultFnArg"
|
|
13
|
-
},
|
|
14
|
-
"optionalArg": {
|
|
15
|
-
"name": "optionalArg"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"flags": {
|
|
@@ -121,5 +121,5 @@
|
|
|
121
121
|
"enableJsonFlag": false
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
|
-
"version": "0.2.
|
|
124
|
+
"version": "0.2.1"
|
|
125
125
|
}
|