We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ce4a5 commit c876defCopy full SHA for c876def
1 file changed
lib/package.js
@@ -672,6 +672,13 @@ export default class Package {
672
}
673
674
for ( const dependency of dependencies ) {
675
+
676
+ // missed dependency
677
+ if ( !dependency.location && !dependency.current ) {
678
+ dependency.location = path.join( this.root, "node_modules", name );
679
+ dependency.missed = true;
680
+ }
681
682
if ( index[ dependency.location ] ) {
683
684
// use minimal wanted version
0 commit comments