@oclif/plugin-test-esbuild 0.5.23 → 0.5.24
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-H3R7L77D.js → chunk-22TVWYM6.js} +1 -1
- package/dist/{chunk-EJWBVEKB.js → chunk-3Q6Z32Y3.js} +7 -2
- package/dist/{chunk-S6HFDT6S.js → chunk-GPLMSXDM.js} +1 -1
- package/dist/{chunk-E3EFI7DI.js → chunk-MQ5HHHWV.js} +1 -1
- package/dist/{chunk-FXME4CAY.js → chunk-Z2NS7DKP.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.24 linux-x64 node-v20.16.0
|
|
21
21
|
$ bundle --help [COMMAND]
|
|
22
22
|
USAGE
|
|
23
23
|
$ bundle COMMAND
|
|
@@ -218401,7 +218401,11 @@ var require_micromatch = __commonJS({
|
|
|
218401
218401
|
var braces = require_braces();
|
|
218402
218402
|
var picomatch = require_picomatch2();
|
|
218403
218403
|
var utils = require_utils3();
|
|
218404
|
-
var isEmptyString = (
|
|
218404
|
+
var isEmptyString = (v) => v === "" || v === "./";
|
|
218405
|
+
var hasBraces = (v) => {
|
|
218406
|
+
const index = v.indexOf("{");
|
|
218407
|
+
return index > -1 && v.indexOf("}", index) > -1;
|
|
218408
|
+
};
|
|
218405
218409
|
var micromatch = (list, patterns, options) => {
|
|
218406
218410
|
patterns = [].concat(patterns);
|
|
218407
218411
|
list = [].concat(list);
|
|
@@ -218536,7 +218540,7 @@ var require_micromatch = __commonJS({
|
|
|
218536
218540
|
};
|
|
218537
218541
|
micromatch.braces = (pattern, options) => {
|
|
218538
218542
|
if (typeof pattern !== "string") throw new TypeError("Expected a string");
|
|
218539
|
-
if (options && options.nobrace === true ||
|
|
218543
|
+
if (options && options.nobrace === true || !hasBraces(pattern)) {
|
|
218540
218544
|
return [pattern];
|
|
218541
218545
|
}
|
|
218542
218546
|
return braces(pattern, options);
|
|
@@ -218545,6 +218549,7 @@ var require_micromatch = __commonJS({
|
|
|
218545
218549
|
if (typeof pattern !== "string") throw new TypeError("Expected a string");
|
|
218546
218550
|
return micromatch.braces(pattern, { ...options, expand: true });
|
|
218547
218551
|
};
|
|
218552
|
+
micromatch.hasBraces = hasBraces;
|
|
218548
218553
|
module.exports = micromatch;
|
|
218549
218554
|
}
|
|
218550
218555
|
});
|
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-Z2NS7DKP.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-MQ5HHHWV.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-22TVWYM6.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-GPLMSXDM.js";
|
|
13
13
|
import {
|
|
14
14
|
require_ansis,
|
|
15
15
|
require_lib,
|
|
16
16
|
require_src
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-3Q6Z32Y3.js";
|
|
18
18
|
import {
|
|
19
19
|
require_lib as require_lib2,
|
|
20
20
|
require_semver
|
package/oclif.manifest.json
CHANGED