@oclif/plugin-test-esbuild 0.5.41 → 0.5.43
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-6NV2LFZW.js → chunk-D6IAEQPF.js} +1 -1
- package/dist/{chunk-2XRVOJ4F.js → chunk-GHH4PCH7.js} +1 -1
- package/dist/{chunk-66ONFVO5.js → chunk-GNV3JFL4.js} +1 -1
- package/dist/{chunk-GBPD7WOS.js → chunk-URNJEPU2.js} +10 -5
- package/dist/{chunk-KXFJAE4U.js → chunk-WAOKFP2O.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.43 linux-x64 node-v20.18.0
|
|
21
21
|
$ bundle --help [COMMAND]
|
|
22
22
|
USAGE
|
|
23
23
|
$ bundle COMMAND
|
|
@@ -224182,6 +224182,7 @@ var require_config = __commonJS({
|
|
|
224182
224182
|
var settings_1 = require_settings();
|
|
224183
224183
|
var determine_priority_1 = require_determine_priority();
|
|
224184
224184
|
var fs_1 = require_fs();
|
|
224185
|
+
var ids_1 = require_ids();
|
|
224185
224186
|
var os_1 = require_os();
|
|
224186
224187
|
var util_2 = require_util();
|
|
224187
224188
|
var ux_1 = require_ux();
|
|
@@ -224773,16 +224774,20 @@ var require_config = __commonJS({
|
|
|
224773
224774
|
this.commandPermutations.add(permutation, command.id);
|
|
224774
224775
|
}
|
|
224775
224776
|
const handleAlias = (alias, hidden = false) => {
|
|
224776
|
-
|
|
224777
|
+
const aliasWithDefaultTopicSeparator = (0, ids_1.toStandardizedId)(alias, this);
|
|
224778
|
+
if (this._commands.has(aliasWithDefaultTopicSeparator)) {
|
|
224777
224779
|
const prioritizedCommand = (0, determine_priority_1.determinePriority)(this.pjson.oclif.plugins ?? [], [
|
|
224778
|
-
this._commands.get(
|
|
224780
|
+
this._commands.get(aliasWithDefaultTopicSeparator),
|
|
224779
224781
|
command
|
|
224780
224782
|
]);
|
|
224781
|
-
this._commands.set(
|
|
224783
|
+
this._commands.set(aliasWithDefaultTopicSeparator, {
|
|
224784
|
+
...prioritizedCommand,
|
|
224785
|
+
id: aliasWithDefaultTopicSeparator
|
|
224786
|
+
});
|
|
224782
224787
|
} else {
|
|
224783
|
-
this._commands.set(
|
|
224788
|
+
this._commands.set(aliasWithDefaultTopicSeparator, { ...command, hidden, id: aliasWithDefaultTopicSeparator });
|
|
224784
224789
|
}
|
|
224785
|
-
const aliasPermutations = this.flexibleTaxonomy && command.aliasPermutations === void 0 ? (0, util_3.getCommandIdPermutations)(
|
|
224790
|
+
const aliasPermutations = this.flexibleTaxonomy && command.aliasPermutations === void 0 ? (0, util_3.getCommandIdPermutations)(aliasWithDefaultTopicSeparator) : command.permutations ?? [aliasWithDefaultTopicSeparator];
|
|
224786
224791
|
for (const permutation of aliasPermutations) {
|
|
224787
224792
|
this.commandPermutations.add(permutation, command.id);
|
|
224788
224793
|
}
|
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-D6IAEQPF.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-GNV3JFL4.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-GHH4PCH7.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-WAOKFP2O.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-URNJEPU2.js";
|
|
18
18
|
import {
|
|
19
19
|
require_lib as require_lib2
|
|
20
20
|
} from "./chunk-65VALZLM.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.43",
|
|
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-test-esm-1": "^0.8.
|
|
15
|
+
"@oclif/plugin-test-esm-1": "^0.8.40",
|
|
16
16
|
"@oclif/plugin-plugins": "^5.4.15"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"eslint-config-oclif-typescript": "^3",
|
|
29
29
|
"eslint-config-prettier": "^9.1.0",
|
|
30
30
|
"mocha": "^10",
|
|
31
|
-
"oclif": "^4.15.
|
|
31
|
+
"oclif": "^4.15.12",
|
|
32
32
|
"shx": "^0.3.4",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"typescript": "^5"
|