Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Jan 19, 2023
1 parent acf0962 commit d351d8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/module-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Resolver {
if (resolution.result === 'continue' && maybeRenamed !== specifier) {
return { result: 'alias', specifier: maybeRenamed };
}
return { result: 'continue' };
return resolution;
}

fallbackResolve(specifier: string, fromFile: string): Resolution {
Expand Down Expand Up @@ -280,7 +280,7 @@ function reliablyResolvable(pkg: V2Package, packageName: string) {
return true;
}

if (emberVirtualPeerDeps.has(packageName)) {
if (emberVirtualPeerDeps.has(packageName) || emberVirtualPackages.has(packageName)) {
return true;
}

Expand Down

0 comments on commit d351d8d

Please sign in to comment.