@oclif/plugin-test-esbuild 0.5.126 → 0.5.127

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 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.126 linux-x64 node-v24.14.1
20
+ @oclif/plugin-test-esbuild/0.5.127 linux-x64 node-v24.14.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.10.4",
257
+ version: "4.10.5",
258
258
  author: "Salesforce",
259
259
  bugs: "https://github.com/oclif/core/issues",
260
260
  dependencies: {
@@ -268,7 +268,7 @@ var require_package = __commonJS({
268
268
  "indent-string": "^4.0.0",
269
269
  "is-wsl": "^2.2.0",
270
270
  lilconfig: "^3.1.3",
271
- minimatch: "^10.2.4",
271
+ minimatch: "^10.2.5",
272
272
  semver: "^7.7.3",
273
273
  "string-width": "^4.2.3",
274
274
  "supports-color": "^8",
@@ -217915,7 +217915,7 @@ var require_commonjs2 = __commonJS({
217915
217915
  const x = numeric(n[0]);
217916
217916
  const y = numeric(n[1]);
217917
217917
  const width = Math.max(n[0].length, n[1].length);
217918
- let incr = n.length === 3 && n[2] !== void 0 ? Math.abs(numeric(n[2])) : 1;
217918
+ let incr = n.length === 3 && n[2] !== void 0 ? Math.max(Math.abs(numeric(n[2])), 1) : 1;
217919
217919
  let test = lte;
217920
217920
  const reverse = y < x;
217921
217921
  if (reverse) {
@@ -218114,9 +218114,9 @@ var require_unescape = __commonJS({
218114
218114
  exports.unescape = void 0;
218115
218115
  var unescape = (s, { windowsPathsNoEscape = false, magicalBraces = true } = {}) => {
218116
218116
  if (magicalBraces) {
218117
- return windowsPathsNoEscape ? s.replace(/\[([^\/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
218117
+ return windowsPathsNoEscape ? s.replace(/\[([^/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\])\]/g, "$1$2").replace(/\\([^/])/g, "$1");
218118
218118
  }
218119
- return windowsPathsNoEscape ? s.replace(/\[([^\/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\{}])\]/g, "$1$2").replace(/\\([^\/{}])/g, "$1");
218119
+ return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
218120
218120
  };
218121
218121
  exports.unescape = unescape;
218122
218122
  }
@@ -218247,13 +218247,7 @@ var require_ast = __commonJS({
218247
218247
  }
218248
218248
  // reconstructs the pattern
218249
218249
  toString() {
218250
- if (this.#toString !== void 0)
218251
- return this.#toString;
218252
- if (!this.type) {
218253
- return this.#toString = this.#parts.map((p) => String(p)).join("");
218254
- } else {
218255
- return this.#toString = this.type + "(" + this.#parts.map((p) => String(p)).join("|") + ")";
218256
- }
218250
+ return this.#toString !== void 0 ? this.#toString : !this.type ? this.#toString = this.#parts.map((p) => String(p)).join("") : this.#toString = this.type + "(" + this.#parts.map((p) => String(p)).join("|") + ")";
218257
218251
  }
218258
218252
  #fillNegs() {
218259
218253
  if (this !== this.#root)
@@ -218820,7 +218814,7 @@ var require_commonjs3 = __commonJS({
218820
218814
  return new Minimatch(pattern, options).match(p);
218821
218815
  };
218822
218816
  exports.minimatch = minimatch;
218823
- var starDotExtRE = /^\*+([^+@!?\*\[\(]*)$/;
218817
+ var starDotExtRE = /^\*+([^+@!?*[(]*)$/;
218824
218818
  var starDotExtTest = (ext2) => (f) => !f.startsWith(".") && f.endsWith(ext2);
218825
218819
  var starDotExtTestDot = (ext2) => (f) => f.endsWith(ext2);
218826
218820
  var starDotExtTestNocase = (ext2) => {
@@ -218839,7 +218833,7 @@ var require_commonjs3 = __commonJS({
218839
218833
  var starRE = /^\*+$/;
218840
218834
  var starTest = (f) => f.length !== 0 && !f.startsWith(".");
218841
218835
  var starTestDot = (f) => f.length !== 0 && f !== "." && f !== "..";
218842
- var qmarksRE = /^\?+([^+@!?\*\[\(]*)?$/;
218836
+ var qmarksRE = /^\?+([^+@!?*[(]*)?$/;
218843
218837
  var qmarksTestNocase = ([$0, ext2 = ""]) => {
218844
218838
  const noext = qmarksTestNoExt([$0]);
218845
218839
  if (!ext2)
@@ -219063,10 +219057,10 @@ var require_commonjs3 = __commonJS({
219063
219057
  // of patterns that we have to process.
219064
219058
  preprocess(globParts) {
219065
219059
  if (this.options.noglobstar) {
219066
- for (let i = 0; i < globParts.length; i++) {
219067
- for (let j = 0; j < globParts[i].length; j++) {
219068
- if (globParts[i][j] === "**") {
219069
- globParts[i][j] = "*";
219060
+ for (const partset of globParts) {
219061
+ for (let j = 0; j < partset.length; j++) {
219062
+ if (partset[j] === "**") {
219063
+ partset[j] = "*";
219070
219064
  }
219071
219065
  }
219072
219066
  }
@@ -219144,7 +219138,7 @@ var require_commonjs3 = __commonJS({
219144
219138
  let dd = 0;
219145
219139
  while (-1 !== (dd = parts.indexOf("..", dd + 1))) {
219146
219140
  const p = parts[dd - 1];
219147
- if (p && p !== "." && p !== ".." && p !== "**") {
219141
+ if (p && p !== "." && p !== ".." && p !== "**" && !(this.isWindows && /^[a-z]:$/i.test(p))) {
219148
219142
  didSomething = true;
219149
219143
  parts.splice(dd - 1, 2);
219150
219144
  dd -= 2;
@@ -219560,7 +219554,7 @@ var require_commonjs3 = __commonJS({
219560
219554
  re = "^(?!" + re + ").+$";
219561
219555
  try {
219562
219556
  this.regexp = new RegExp(re, [...flags].join(""));
219563
- } catch (ex) {
219557
+ } catch {
219564
219558
  this.regexp = false;
219565
219559
  }
219566
219560
  return this.regexp;
@@ -219568,7 +219562,7 @@ var require_commonjs3 = __commonJS({
219568
219562
  slashSplit(p) {
219569
219563
  if (this.preserveMultipleSlashes) {
219570
219564
  return p.split("/");
219571
- } else if (this.isWindows && /^\/\/[^\/]+/.test(p)) {
219565
+ } else if (this.isWindows && /^\/\/[^/]+/.test(p)) {
219572
219566
  return ["", ...p.split(/\/+/)];
219573
219567
  } else {
219574
219568
  return p.split(/\/+/);
@@ -219599,8 +219593,7 @@ var require_commonjs3 = __commonJS({
219599
219593
  filename = ff[i];
219600
219594
  }
219601
219595
  }
219602
- for (let i = 0; i < set.length; i++) {
219603
- const pattern = set[i];
219596
+ for (const pattern of set) {
219604
219597
  let file = ff;
219605
219598
  if (options.matchBase && pattern.length === 1) {
219606
219599
  file = [filename];
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-L5SO65VZ.js";
3
+ } from "./chunk-6SHF5RLP.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-L5SO65VZ.js";
3
+ } from "./chunk-6SHF5RLP.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-L5SO65VZ.js";
3
+ } from "./chunk-6SHF5RLP.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-L5SO65VZ.js";
3
+ } from "./chunk-6SHF5RLP.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  ESBuild
3
- } from "../chunk-JDGNZPIX.js";
4
- import "../chunk-L5SO65VZ.js";
3
+ } from "../chunk-PVEL6G63.js";
4
+ import "../chunk-6SHF5RLP.js";
5
5
  import "../chunk-YXPP4ZUR.js";
6
6
  import "../chunk-RRP6KXWN.js";
7
7
  export {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  Hello
3
- } from "../../chunk-TQJTZAF2.js";
4
- import "../../chunk-L5SO65VZ.js";
3
+ } from "../../chunk-YFVRENPV.js";
4
+ import "../../chunk-6SHF5RLP.js";
5
5
  import "../../chunk-YXPP4ZUR.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  World
3
- } from "../../chunk-VMUXV3YO.js";
4
- import "../../chunk-L5SO65VZ.js";
3
+ } from "../../chunk-TR666ZRS.js";
4
+ import "../../chunk-6SHF5RLP.js";
5
5
  import "../../chunk-YXPP4ZUR.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  init_default
3
- } from "../../chunk-VTBJE36C.js";
4
- import "../../chunk-L5SO65VZ.js";
3
+ } from "../../chunk-RMTJQRRJ.js";
4
+ import "../../chunk-6SHF5RLP.js";
5
5
  import "../../chunk-YXPP4ZUR.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
package/dist/index.js CHANGED
@@ -1,20 +1,20 @@
1
1
  import {
2
2
  ESBuild
3
- } from "./chunk-JDGNZPIX.js";
3
+ } from "./chunk-PVEL6G63.js";
4
4
  import {
5
5
  Hello
6
- } from "./chunk-TQJTZAF2.js";
6
+ } from "./chunk-YFVRENPV.js";
7
7
  import {
8
8
  World
9
- } from "./chunk-VMUXV3YO.js";
9
+ } from "./chunk-TR666ZRS.js";
10
10
  import {
11
11
  init_default
12
- } from "./chunk-VTBJE36C.js";
12
+ } from "./chunk-RMTJQRRJ.js";
13
13
  import {
14
14
  require_ansis,
15
15
  require_lib,
16
16
  require_src
17
- } from "./chunk-L5SO65VZ.js";
17
+ } from "./chunk-6SHF5RLP.js";
18
18
  import {
19
19
  require_lib as require_lib2
20
20
  } from "./chunk-SO2G2ODZ.js";
@@ -475,5 +475,5 @@
475
475
  "enableJsonFlag": false
476
476
  }
477
477
  },
478
- "version": "0.5.126"
478
+ "version": "0.5.127"
479
479
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-esbuild",
3
- "version": "0.5.126",
3
+ "version": "0.5.127",
4
4
  "description": "Bundled plugin for testing",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-test-esbuild/issues",