@oclif/plugin-test-esbuild 0.5.71 → 0.5.72

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.71 linux-x64 node-v22.13.1
20
+ @oclif/plugin-test-esbuild/0.5.72 linux-x64 node-v22.14.0
21
21
  $ bundle --help [COMMAND]
22
22
  USAGE
23
23
  $ bundle COMMAND
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-AO7BT4L6.js";
3
+ } from "./chunk-5ZSILI6X.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_semver
3
- } from "./chunk-GDI7GCRT.js";
3
+ } from "./chunk-VACRQA52.js";
4
4
  import {
5
5
  __commonJS,
6
6
  __require,
@@ -254,12 +254,12 @@ var require_package = __commonJS({
254
254
  module.exports = {
255
255
  name: "@oclif/core",
256
256
  description: "base library for oclif CLIs",
257
- version: "4.2.7",
257
+ version: "4.2.8",
258
258
  author: "Salesforce",
259
259
  bugs: "https://github.com/oclif/core/issues",
260
260
  dependencies: {
261
261
  "ansi-escapes": "^4.3.2",
262
- ansis: "^3.14.0",
262
+ ansis: "^3.16.0",
263
263
  "clean-stack": "^3.0.1",
264
264
  "cli-spinners": "^2.9.2",
265
265
  debug: "^4.4.0",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-AO7BT4L6.js";
3
+ } from "./chunk-5ZSILI6X.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-AO7BT4L6.js";
3
+ } from "./chunk-5ZSILI6X.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -59,6 +59,7 @@ var require_re = __commonJS({
59
59
  var re = exports.re = [];
60
60
  var safeRe = exports.safeRe = [];
61
61
  var src = exports.src = [];
62
+ var safeSrc = exports.safeSrc = [];
62
63
  var t = exports.t = {};
63
64
  var R = 0;
64
65
  var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
@@ -79,6 +80,7 @@ var require_re = __commonJS({
79
80
  debug(name, index, value);
80
81
  t[name] = index;
81
82
  src[index] = value;
83
+ safeSrc[index] = safe;
82
84
  re[index] = new RegExp(value, isGlobal ? "g" : void 0);
83
85
  safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0);
84
86
  };
@@ -178,7 +180,7 @@ var require_semver = __commonJS({
178
180
  init_cjs_shims();
179
181
  var debug = require_debug();
180
182
  var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
181
- var { safeRe: re, t } = require_re();
183
+ var { safeRe: re, safeSrc: src, t } = require_re();
182
184
  var parseOptions = require_parse_options();
183
185
  var { compareIdentifiers } = require_identifiers();
184
186
  var SemVer = class _SemVer {
@@ -323,7 +325,8 @@ var require_semver = __commonJS({
323
325
  throw new Error("invalid increment argument: identifier is empty");
324
326
  }
325
327
  if (identifier) {
326
- const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]);
328
+ const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`);
329
+ const match = `-${identifier}`.match(r);
327
330
  if (!match || match[1] !== identifier) {
328
331
  throw new Error(`invalid identifier: ${identifier}`);
329
332
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_lib
3
- } from "./chunk-AO7BT4L6.js";
3
+ } from "./chunk-5ZSILI6X.js";
4
4
  import {
5
5
  __toESM,
6
6
  init_cjs_shims
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  ESBuild
3
- } from "../chunk-J5GJEMGB.js";
4
- import "../chunk-AO7BT4L6.js";
5
- import "../chunk-GDI7GCRT.js";
3
+ } from "../chunk-4OXJGH7F.js";
4
+ import "../chunk-5ZSILI6X.js";
5
+ import "../chunk-VACRQA52.js";
6
6
  import "../chunk-RRP6KXWN.js";
7
7
  export {
8
8
  ESBuild as default
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  Hello
3
- } from "../../chunk-HWZSSP27.js";
4
- import "../../chunk-AO7BT4L6.js";
5
- import "../../chunk-GDI7GCRT.js";
3
+ } from "../../chunk-X5G34NQW.js";
4
+ import "../../chunk-5ZSILI6X.js";
5
+ import "../../chunk-VACRQA52.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
8
8
  Hello as default
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  World
3
- } from "../../chunk-BRN5E354.js";
4
- import "../../chunk-AO7BT4L6.js";
5
- import "../../chunk-GDI7GCRT.js";
3
+ } from "../../chunk-MORRZ3TO.js";
4
+ import "../../chunk-5ZSILI6X.js";
5
+ import "../../chunk-VACRQA52.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
8
8
  World as default
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  init_default
3
- } from "../../chunk-4634G4H7.js";
4
- import "../../chunk-AO7BT4L6.js";
5
- import "../../chunk-GDI7GCRT.js";
3
+ } from "../../chunk-C7GB3TAX.js";
4
+ import "../../chunk-5ZSILI6X.js";
5
+ import "../../chunk-VACRQA52.js";
6
6
  import "../../chunk-RRP6KXWN.js";
7
7
  export {
8
8
  init_default as default
package/dist/index.js CHANGED
@@ -1,26 +1,26 @@
1
1
  import {
2
2
  ESBuild
3
- } from "./chunk-J5GJEMGB.js";
3
+ } from "./chunk-4OXJGH7F.js";
4
4
  import {
5
5
  Hello
6
- } from "./chunk-HWZSSP27.js";
6
+ } from "./chunk-X5G34NQW.js";
7
7
  import {
8
8
  World
9
- } from "./chunk-BRN5E354.js";
9
+ } from "./chunk-MORRZ3TO.js";
10
10
  import {
11
11
  init_default
12
- } from "./chunk-4634G4H7.js";
12
+ } from "./chunk-C7GB3TAX.js";
13
13
  import {
14
14
  require_ansis,
15
15
  require_lib,
16
16
  require_src
17
- } from "./chunk-AO7BT4L6.js";
17
+ } from "./chunk-5ZSILI6X.js";
18
18
  import {
19
19
  require_lib as require_lib2
20
20
  } from "./chunk-SO2G2ODZ.js";
21
21
  import {
22
22
  require_semver
23
- } from "./chunk-GDI7GCRT.js";
23
+ } from "./chunk-VACRQA52.js";
24
24
  import {
25
25
  __toESM,
26
26
  init_cjs_shims
@@ -505,7 +505,7 @@ var Plugins = class {
505
505
  const url = name;
506
506
  const output = await this.npm.install([...args, url], options);
507
507
  const { dependencies } = await this.pjson();
508
- const { default: npa } = await import("./npa-A3BPSVCS.js");
508
+ const { default: npa } = await import("./npa-OQ6KM7JR.js");
509
509
  const normalizedUrl = npa(url);
510
510
  const matches = Object.entries(dependencies ?? {}).find(([, u]) => {
511
511
  const normalized = npa(u);
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-SO2G2ODZ.js";
4
4
  import {
5
5
  require_semver
6
- } from "./chunk-GDI7GCRT.js";
6
+ } from "./chunk-VACRQA52.js";
7
7
  import {
8
8
  __commonJS,
9
9
  __require,
@@ -475,5 +475,5 @@
475
475
  "enableJsonFlag": false
476
476
  }
477
477
  },
478
- "version": "0.5.71"
478
+ "version": "0.5.72"
479
479
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-esbuild",
3
- "version": "0.5.71",
3
+ "version": "0.5.72",
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-plugins": "^5.4.33",
15
+ "@oclif/plugin-plugins": "^5.4.34",
16
16
  "@oclif/plugin-test-esm-1": "^0.8.62"
17
17
  },
18
18
  "devDependencies": {
@@ -25,10 +25,10 @@
25
25
  "chai": "^4",
26
26
  "esbuild": "^0.25.0",
27
27
  "eslint": "^9.21.0",
28
- "eslint-config-oclif": "^6.0.15",
29
- "eslint-config-prettier": "^10.0.1",
28
+ "eslint-config-oclif": "^6.0.20",
29
+ "eslint-config-prettier": "^10.0.2",
30
30
  "mocha": "^10",
31
- "oclif": "^4.17.30",
31
+ "oclif": "^4.17.32",
32
32
  "shx": "^0.3.4",
33
33
  "ts-node": "^10.9.2",
34
34
  "typescript": "^5"