@oclif/plugin-test-esbuild 0.5.29 → 0.5.30
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-GPLMSXDM.js → chunk-KLMU3MN4.js} +1 -1
- package/dist/{chunk-22TVWYM6.js → chunk-Q256OVZE.js} +1 -1
- package/dist/{chunk-Z2NS7DKP.js → chunk-R4T62YJ6.js} +1 -1
- package/dist/{chunk-3Q6Z32Y3.js → chunk-SJOJQK4M.js} +10 -10
- package/dist/{chunk-MQ5HHHWV.js → chunk-ZMIYXKVN.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.30 linux-x64 node-v20.17.0
|
|
21
21
|
$ bundle --help [COMMAND]
|
|
22
22
|
USAGE
|
|
23
23
|
$ bundle COMMAND
|
|
@@ -1084,9 +1084,9 @@ var require_is_wsl = __commonJS({
|
|
|
1084
1084
|
}
|
|
1085
1085
|
});
|
|
1086
1086
|
|
|
1087
|
-
// node_modules/
|
|
1087
|
+
// node_modules/ms/index.js
|
|
1088
1088
|
var require_ms = __commonJS({
|
|
1089
|
-
"node_modules/
|
|
1089
|
+
"node_modules/ms/index.js"(exports, module) {
|
|
1090
1090
|
init_cjs_shims();
|
|
1091
1091
|
var s = 1e3;
|
|
1092
1092
|
var m = s * 60;
|
|
@@ -1937,25 +1937,25 @@ var require_write = __commonJS({
|
|
|
1937
1937
|
var node_util_1 = __require("node:util");
|
|
1938
1938
|
var stdout = (str, ...args) => {
|
|
1939
1939
|
if (!str && args) {
|
|
1940
|
-
|
|
1940
|
+
console.log((0, node_util_1.format)(...args));
|
|
1941
1941
|
} else if (!str) {
|
|
1942
|
-
|
|
1942
|
+
console.log();
|
|
1943
1943
|
} else if (typeof str === "string") {
|
|
1944
|
-
|
|
1944
|
+
console.log((0, node_util_1.format)(str, ...args));
|
|
1945
1945
|
} else {
|
|
1946
|
-
|
|
1946
|
+
console.log((0, node_util_1.format)(...str, ...args));
|
|
1947
1947
|
}
|
|
1948
1948
|
};
|
|
1949
1949
|
exports.stdout = stdout;
|
|
1950
1950
|
var stderr = (str, ...args) => {
|
|
1951
1951
|
if (!str && args) {
|
|
1952
|
-
|
|
1952
|
+
console.error((0, node_util_1.format)(...args));
|
|
1953
1953
|
} else if (!str) {
|
|
1954
|
-
|
|
1954
|
+
console.error();
|
|
1955
1955
|
} else if (typeof str === "string") {
|
|
1956
|
-
|
|
1956
|
+
console.error((0, node_util_1.format)(str, ...args));
|
|
1957
1957
|
} else {
|
|
1958
|
-
|
|
1958
|
+
console.error((0, node_util_1.format)(...str, ...args));
|
|
1959
1959
|
}
|
|
1960
1960
|
};
|
|
1961
1961
|
exports.stderr = stderr;
|
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-R4T62YJ6.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-ZMIYXKVN.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-Q256OVZE.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-KLMU3MN4.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-SJOJQK4M.js";
|
|
18
18
|
import {
|
|
19
19
|
require_lib as require_lib2,
|
|
20
20
|
require_semver
|
package/oclif.manifest.json
CHANGED