@oclif/plugin-test-esbuild 0.5.96 → 0.5.97
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-VKTV3E2M.js → chunk-6KTENSBY.js} +1 -1
- package/dist/{chunk-RMH3HTKT.js → chunk-BQNWCYWY.js} +1 -1
- package/dist/{chunk-AYIYHPYZ.js → chunk-DQWFSJDY.js} +8 -6
- package/dist/{chunk-2XQMMIL2.js → chunk-W7O6PTBH.js} +1 -1
- package/dist/{chunk-UYB5GF2G.js → chunk-YACCSRPH.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 +4 -4
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.97 linux-x64 node-v22.19.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.5.
|
|
257
|
+
version: "4.5.3",
|
|
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.2",
|
|
283
283
|
"@oclif/plugin-help": "^6",
|
|
284
284
|
"@oclif/plugin-plugins": "^5",
|
|
285
285
|
"@oclif/prettier-config": "^0.2.1",
|
|
@@ -309,13 +309,13 @@ var require_package = __commonJS({
|
|
|
309
309
|
husky: "^9.1.7",
|
|
310
310
|
"lint-staged": "^15",
|
|
311
311
|
madge: "^6.1.0",
|
|
312
|
-
mocha: "^
|
|
312
|
+
mocha: "^11.7.2",
|
|
313
313
|
nyc: "^15.1.0",
|
|
314
314
|
prettier: "^3.6.2",
|
|
315
315
|
shx: "^0.4.0",
|
|
316
316
|
sinon: "^18",
|
|
317
317
|
"ts-node": "^10.9.2",
|
|
318
|
-
tsd: "^0.
|
|
318
|
+
tsd: "^0.33.0",
|
|
319
319
|
typescript: "^5"
|
|
320
320
|
},
|
|
321
321
|
engines: {
|
|
@@ -224252,6 +224252,7 @@ var require_parse2 = __commonJS({
|
|
|
224252
224252
|
};
|
|
224253
224253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
224254
224254
|
exports.Parser = exports.readStdin = void 0;
|
|
224255
|
+
var node_os_1 = __require("node:os");
|
|
224255
224256
|
var node_readline_1 = __require("node:readline");
|
|
224256
224257
|
var cache_1 = __importDefault(require_cache());
|
|
224257
224258
|
var logger_1 = require_logger();
|
|
@@ -224274,7 +224275,7 @@ var require_parse2 = __commonJS({
|
|
|
224274
224275
|
return globalThis.oclif.stdinCache;
|
|
224275
224276
|
}
|
|
224276
224277
|
return new Promise((resolve) => {
|
|
224277
|
-
|
|
224278
|
+
const lines = [];
|
|
224278
224279
|
const ac = new AbortController();
|
|
224279
224280
|
const { signal } = ac;
|
|
224280
224281
|
const timeout = setTimeout(() => ac.abort(), 10);
|
|
@@ -224284,9 +224285,10 @@ var require_parse2 = __commonJS({
|
|
|
224284
224285
|
terminal: false
|
|
224285
224286
|
});
|
|
224286
224287
|
rl.on("line", (line) => {
|
|
224287
|
-
|
|
224288
|
+
lines.push(line);
|
|
224288
224289
|
});
|
|
224289
224290
|
rl.once("close", () => {
|
|
224291
|
+
const result = lines.join(node_os_1.EOL);
|
|
224290
224292
|
clearTimeout(timeout);
|
|
224291
224293
|
debug("resolved from stdin", result);
|
|
224292
224294
|
globalThis.oclif = { ...globalThis.oclif, stdinCache: result };
|
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-W7O6PTBH.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-6KTENSBY.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-BQNWCYWY.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-YACCSRPH.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-DQWFSJDY.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.97",
|
|
4
4
|
"description": "Bundled plugin for testing",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-test-esbuild/issues",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"@types/node": "^18",
|
|
25
25
|
"chai": "^4",
|
|
26
26
|
"esbuild": "^0.25.9",
|
|
27
|
-
"eslint": "^9.
|
|
28
|
-
"eslint-config-oclif": "^6.0.
|
|
27
|
+
"eslint": "^9.35.0",
|
|
28
|
+
"eslint-config-oclif": "^6.0.101",
|
|
29
29
|
"eslint-config-prettier": "^10.1.8",
|
|
30
30
|
"mocha": "^10",
|
|
31
|
-
"oclif": "^4.22.
|
|
31
|
+
"oclif": "^4.22.16",
|
|
32
32
|
"shx": "^0.4.0",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"typescript": "^5"
|