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.
The issue's title might be confusing, but here is what I mean:
I have
parent-projectthat 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-projectpackage 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-projecttheaws-sdkpackage is missing.