Allow local project to depend on local lerna packages
You should be able to accomplish this with npm link. Although I have not tried this using a local dependency that is not published on npm. Directory tree foo/ packages/ core/ package.json errors/ package.json bar/ package.json foo/packages/core/package.json { … dependencies: { “@foo/errors”: “*” } } bar/package.json { … dependencies: { “@foo/core”: “../foo/packages/core” } } Run … Read more