-
Notifications
You must be signed in to change notification settings - Fork 6
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
Support nested packages #5
Comments
Hmm... 🤔 I might be wrong here, but I'm not seeing how it would work with Yarn workspaces unless you specify each workspace in the root package.json. |
Yes, if it's required I can directly specify packages. I haven't tested, but I think recursive search should work "packages": [
"packages/**"
], I suggest now the problem in |
Also I've experienced this error while trying adding web support I've used one of the latest yarn policies set-version 1.19.0 |
Not specifically the same, but if you check the Yarn issues you'll find multiple reports about problems with non-flat structures: yarnpkg/yarn#6151. (I don't have much free time now, so I can't promise I'll give be able to test this issue anytime soon :/ ) |
If I try to move packages one level deep, ie instead of
packages/app
andpackages/mobile
usingpackages/examples/app
andpackages/examples/mobile
I see error when try to run application, saying can't findapp
package.I think it doesn't look recursively under
packages/
directory.This might be useful if I want to distribute package (not application) and test it under multiple applications.
The text was updated successfully, but these errors were encountered: