@oclif/plugin-test-esbuild 0.5.129 → 0.5.130

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.129 linux-x64 node-v24.14.1
20
+ @oclif/plugin-test-esbuild/0.5.130 linux-x64 node-v24.14.1
21
21
  $ bundle --help [COMMAND]
22
22
  USAGE
23
23
  $ bundle COMMAND
package/dist/index.js CHANGED
@@ -519,6 +519,9 @@ var Plugins = class {
519
519
  const normalizedUrl = npa(url);
520
520
  const matches = Object.entries(dependencies ?? {}).find(([, npmVersion]) => {
521
521
  const normalized = npa(npmVersion);
522
+ if (normalized.type !== normalizedUrl.type) {
523
+ return false;
524
+ }
522
525
  if (normalized.type === "file" && normalized.raw) {
523
526
  return parse(url).base === parse(normalized.raw).base;
524
527
  }
@@ -475,5 +475,5 @@
475
475
  "enableJsonFlag": false
476
476
  }
477
477
  },
478
- "version": "0.5.129"
478
+ "version": "0.5.130"
479
479
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-esbuild",
3
- "version": "0.5.129",
3
+ "version": "0.5.130",
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.60",
15
+ "@oclif/plugin-plugins": "^5.4.61",
16
16
  "@oclif/plugin-test-esm-1": "^0.8.114"
17
17
  },
18
18
  "devDependencies": {
@@ -25,7 +25,7 @@
25
25
  "chai": "^4",
26
26
  "esbuild": "^0.28.0",
27
27
  "eslint": "^9.39.4",
28
- "eslint-config-oclif": "^6.0.154",
28
+ "eslint-config-oclif": "^6.0.157",
29
29
  "eslint-config-prettier": "^10.1.8",
30
30
  "mocha": "^10",
31
31
  "oclif": "^4.23.0",