@oclif/plugin-test-esbuild 0.5.88 → 0.5.90
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 +1 -1
- package/dist/{chunk-ZEUYQI3H.js → chunk-6XFMTTGL.js} +1 -1
- package/dist/{chunk-IHURMRVN.js → chunk-7IUGOD5X.js} +1 -1
- package/dist/{chunk-C7YMEHET.js → chunk-BFMMZV22.js} +4 -4
- package/dist/{chunk-PLUCZA3E.js → chunk-R2WDTEUJ.js} +1 -1
- package/dist/{chunk-QXGNPCXX.js → chunk-YNCUVOVW.js} +1 -1
- package/dist/commands/esbuild.js +2 -2
- package/dist/commands/hello/index.js +2 -2
- package/dist/commands/hello/world.js +2 -2
- package/dist/hooks/init/init.js +2 -2
- package/dist/index.js +5 -5
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
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.5.
|
|
20
|
+
@oclif/plugin-test-esbuild/0.5.90 linux-x64 node-v22.16.0
|
|
21
21
|
$ bundle --help [COMMAND]
|
|
22
22
|
USAGE
|
|
23
23
|
$ bundle COMMAND
|
|
@@ -254,7 +254,7 @@ var require_package = __commonJS({
|
|
|
254
254
|
module.exports = {
|
|
255
255
|
name: "@oclif/core",
|
|
256
256
|
description: "base library for oclif CLIs",
|
|
257
|
-
version: "4.4.
|
|
257
|
+
version: "4.4.1",
|
|
258
258
|
author: "Salesforce",
|
|
259
259
|
bugs: "https://github.com/oclif/core/issues",
|
|
260
260
|
dependencies: {
|
|
@@ -279,7 +279,7 @@ var require_package = __commonJS({
|
|
|
279
279
|
},
|
|
280
280
|
devDependencies: {
|
|
281
281
|
"@commitlint/config-conventional": "^19",
|
|
282
|
-
"@eslint/compat": "^1.3.
|
|
282
|
+
"@eslint/compat": "^1.3.1",
|
|
283
283
|
"@oclif/plugin-help": "^6",
|
|
284
284
|
"@oclif/plugin-plugins": "^5",
|
|
285
285
|
"@oclif/prettier-config": "^0.2.1",
|
|
@@ -311,7 +311,7 @@ var require_package = __commonJS({
|
|
|
311
311
|
madge: "^6.1.0",
|
|
312
312
|
mocha: "^10.8.2",
|
|
313
313
|
nyc: "^15.1.0",
|
|
314
|
-
prettier: "^3.
|
|
314
|
+
prettier: "^3.6.2",
|
|
315
315
|
shx: "^0.4.0",
|
|
316
316
|
sinon: "^18",
|
|
317
317
|
"ts-node": "^10.9.2",
|
|
@@ -216213,7 +216213,7 @@ var require_docopts = __commonJS({
|
|
|
216213
216213
|
const opts = ["<%= command.id %>"];
|
|
216214
216214
|
if (this.cmd.args) {
|
|
216215
216215
|
const suffix = this.cmd.strict === false ? "..." : "";
|
|
216216
|
-
const a = Object.values((0, ensure_arg_object_1.ensureArgObject)(this.cmd.args)).map((arg) => arg.required ? `${arg.name.toUpperCase()}${suffix}` : `[${arg.name.toUpperCase()}${suffix}]`) || [];
|
|
216216
|
+
const a = Object.values((0, ensure_arg_object_1.ensureArgObject)(this.cmd.args)).filter((arg) => !arg.hidden).map((arg) => arg.required ? `${arg.name.toUpperCase()}${suffix}` : `[${arg.name.toUpperCase()}${suffix}]`) || [];
|
|
216217
216217
|
opts.push(...a);
|
|
216218
216218
|
}
|
|
216219
216219
|
try {
|
package/dist/commands/esbuild.js
CHANGED
package/dist/hooks/init/init.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ESBuild
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-YNCUVOVW.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-6XFMTTGL.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-7IUGOD5X.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-R2WDTEUJ.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-BFMMZV22.js";
|
|
18
18
|
import {
|
|
19
19
|
require_lib as require_lib2
|
|
20
20
|
} from "./chunk-SO2G2ODZ.js";
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-test-esbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.90",
|
|
4
4
|
"description": "Bundled plugin for testing",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-test-esbuild/issues",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@oclif/core": "^4",
|
|
15
|
-
"@oclif/plugin-plugins": "^5.4.
|
|
15
|
+
"@oclif/plugin-plugins": "^5.4.43",
|
|
16
16
|
"@oclif/plugin-test-esm-1": "^0.8.77"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"chai": "^4",
|
|
26
26
|
"esbuild": "^0.25.5",
|
|
27
27
|
"eslint": "^9.29.0",
|
|
28
|
-
"eslint-config-oclif": "^6.0.
|
|
28
|
+
"eslint-config-oclif": "^6.0.80",
|
|
29
29
|
"eslint-config-prettier": "^10.1.5",
|
|
30
30
|
"mocha": "^10",
|
|
31
31
|
"oclif": "^4.20.1",
|