Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing unique dependencies of a relative dependency #59

Open
alexeychikk opened this issue Sep 25, 2023 · 0 comments
Open

Missing unique dependencies of a relative dependency #59

alexeychikk opened this issue Sep 25, 2023 · 0 comments

Comments

@alexeychikk
Copy link

The issue's title might be confusing, but here is what I mean:
I have parent-project that has

{ 
  "name": "parent-project",
  "dependencies": { 
    "typeorm": "1.0.0",
    "@myorg/child-project": "1.2.3" // <- npx relative-deps add ../child-project
  } 
}

And I have @myorg/child-project package that has:

{ 
  "name": "@myorg/child-project",
  "dependencies": { 
    "typeorm": "1.0.0",
    "aws-sdk": "3.4.5" // <- THIS IS MISSING in parent-project/node_modules
                       // neither it is present in parent-project/node_modules/@myorg/child-project/node_modules
  } 
}

After I do npx relative-deps add ../child-project the aws-sdk package is missing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant