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 Nov 4, 2024. It is now read-only.
Hi, I'm moving my existing repo using esm into a monorepo using lerna.
When I use lerna run --stream dev to start my app, the command works, but some of the output is being swallowed and doesn't show up in the console. If I cd to the specific package and run yarn dev then it works fine (logs all output).
An easy way to reproduce the issue is to add an import to a non-existent module, to your code:
import 'i-dont-exist'
The error message gets logged when running the app directly, but not when running it using lerna.
Has anyone else encountered this? I'm not sure if it's an esm issue or a lerna issue.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I'm moving my existing repo using
esm
into a monorepo usinglerna
.When I use
lerna run --stream dev
to start my app, the command works, but some of the output is being swallowed and doesn't show up in the console. If Icd
to the specific package and runyarn dev
then it works fine (logs all output).An easy way to reproduce the issue is to add an import to a non-existent module, to your code:
The error message gets logged when running the app directly, but not when running it using lerna.
Has anyone else encountered this? I'm not sure if it's an esm issue or a lerna issue.
The text was updated successfully, but these errors were encountered: