@oclif/plugin-test-esbuild 0.5.93 → 0.5.94
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-VBGZQVWW.js → chunk-3CDKV3BJ.js} +1 -1
- package/dist/{chunk-J4LYUJME.js → chunk-7DJQS2HT.js} +1 -1
- package/dist/{chunk-CMMF5D2B.js → chunk-QQ5AH2JR.js} +3 -2
- package/dist/{chunk-55MN5LER.js → chunk-UZESBGIN.js} +1 -1
- package/dist/{chunk-555PQWAF.js → chunk-ZAMVKT35.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 +1 -1
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.94 linux-x64 node-v22.17.1
|
|
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.2",
|
|
258
258
|
author: "Salesforce",
|
|
259
259
|
bugs: "https://github.com/oclif/core/issues",
|
|
260
260
|
dependencies: {
|
|
@@ -222107,7 +222107,8 @@ var require_cache_command = __commonJS({
|
|
|
222107
222107
|
cacheArgs((0, ensure_arg_object_1.ensureArgObject)(cmd.args), respectNoCacheDefault)
|
|
222108
222108
|
]);
|
|
222109
222109
|
const stdProperties = {
|
|
222110
|
-
|
|
222110
|
+
// Replace all spaces in aliases with colons to standardize them.
|
|
222111
|
+
aliases: (cmd.aliases ?? []).map((a) => a.replaceAll(" ", ":")),
|
|
222111
222112
|
args,
|
|
222112
222113
|
deprecateAliases: cmd.deprecateAliases,
|
|
222113
222114
|
deprecationOptions: cmd.deprecationOptions,
|
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-3CDKV3BJ.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-UZESBGIN.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ZAMVKT35.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-7DJQS2HT.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-QQ5AH2JR.js";
|
|
18
18
|
import {
|
|
19
19
|
require_lib as require_lib2
|
|
20
20
|
} from "./chunk-SO2G2ODZ.js";
|
package/oclif.manifest.json
CHANGED