You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
We hoist all our common deps to the top-level parent, as well as common utilities (jest, eslint, pm2, etc.)
However, many of the child folders have their own
package.json
for one reason or another. (version strings,main:
declaration, etc.)npx
won't traverse past the current directory, but only if it has apackage.json
. (This was reported and then closed in #210)Example tree:
I should be able to, in
packages/bar
, callnpx foo
and have it resolve. This is expected behavior. But it won't.If
packages/bar
does NOT have apackage.json
,npx foo
will resolve to the correct in 2 parents up.The text was updated successfully, but these errors were encountered: