We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c25d7e commit c6f4d45Copy full SHA for c6f4d45
1 file changed
src/plugins.ts
@@ -166,9 +166,9 @@ export default class Plugins {
166
const normalizedUrl = npa(url)
167
const matches = Object.entries(dependencies ?? {}).find(([, npmVersion]) => {
168
const normalized = npa(npmVersion)
169
- // if (normalized.type !== normalizedUrl.type) {
170
- // return false
171
- // }
+ if (normalized.type !== normalizedUrl.type) {
+ return false
+ }
172
173
// for local file paths
174
if (normalized.type === 'file' && normalized.raw) {
0 commit comments