@oclif/plugin-test-esbuild 0.5.90 → 0.5.91
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-6XFMTTGL.js → chunk-7D3ASGVY.js} +1 -1
- package/dist/{chunk-R2WDTEUJ.js → chunk-BDEQYJGV.js} +1 -1
- package/dist/{chunk-BFMMZV22.js → chunk-EJNJMQUJ.js} +7 -4
- package/dist/{chunk-YNCUVOVW.js → chunk-UDSE6R34.js} +1 -1
- package/dist/{chunk-7IUGOD5X.js → chunk-WUQZ7JEK.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 +5 -5
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.91 linux-x64 node-v22.17.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.
|
|
257
|
+
version: "4.5.0",
|
|
258
258
|
author: "Salesforce",
|
|
259
259
|
bugs: "https://github.com/oclif/core/issues",
|
|
260
260
|
dependencies: {
|
|
@@ -225352,13 +225352,13 @@ var require_main = __commonJS({
|
|
|
225352
225352
|
argv = [symbols_1.SINGLE_COMMAND_CLI_SYMBOL, ...argv];
|
|
225353
225353
|
}
|
|
225354
225354
|
const [id, ...argvSlice] = (0, help_1.normalizeArgv)(config, argv);
|
|
225355
|
-
const runFinally = async () => {
|
|
225355
|
+
const runFinally = async (cmd2, error) => {
|
|
225356
225356
|
marker?.stop();
|
|
225357
225357
|
if (!initMarker?.stopped)
|
|
225358
225358
|
initMarker?.stop();
|
|
225359
225359
|
await performance_1.Performance.collect();
|
|
225360
225360
|
performance_1.Performance.debug();
|
|
225361
|
-
await config.runHook("finally", { argv: argvSlice, id });
|
|
225361
|
+
await config.runHook("finally", { argv: argvSlice, Command: cmd2, error, id });
|
|
225362
225362
|
};
|
|
225363
225363
|
await config.runHook("init", { argv: argvSlice, id });
|
|
225364
225364
|
if ((0, exports.versionAddition)(argv, config)) {
|
|
@@ -225381,10 +225381,13 @@ var require_main = __commonJS({
|
|
|
225381
225381
|
}
|
|
225382
225382
|
}
|
|
225383
225383
|
initMarker?.stop();
|
|
225384
|
+
let err;
|
|
225384
225385
|
try {
|
|
225385
225386
|
return await config.runCommand(id, argvSlice, cmd);
|
|
225387
|
+
} catch (error) {
|
|
225388
|
+
err = error;
|
|
225386
225389
|
} finally {
|
|
225387
|
-
await runFinally();
|
|
225390
|
+
await runFinally(cmd, err);
|
|
225388
225391
|
}
|
|
225389
225392
|
}
|
|
225390
225393
|
}
|
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-UDSE6R34.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-7D3ASGVY.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-WUQZ7JEK.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-BDEQYJGV.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-EJNJMQUJ.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.91",
|
|
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.44",
|
|
16
16
|
"@oclif/plugin-test-esm-1": "^0.8.77"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@types/mocha": "^10",
|
|
24
24
|
"@types/node": "^18",
|
|
25
25
|
"chai": "^4",
|
|
26
|
-
"esbuild": "^0.25.
|
|
27
|
-
"eslint": "^9.
|
|
28
|
-
"eslint-config-oclif": "^6.0.
|
|
26
|
+
"esbuild": "^0.25.6",
|
|
27
|
+
"eslint": "^9.31.0",
|
|
28
|
+
"eslint-config-oclif": "^6.0.83",
|
|
29
29
|
"eslint-config-prettier": "^10.1.5",
|
|
30
30
|
"mocha": "^10",
|
|
31
31
|
"oclif": "^4.20.1",
|