We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
entr
entr was working fine with Lerna v6. We have switched from Lerna v6 to v8.
Now we are getting a Node native error when running our tests with fd -e js -e mjs | entr run-tests.sh:
fd -e js -e mjs | entr run-tests.sh
run-tests.sh lerna notice cli v8.1.8 # /.nvm/versions/node/v20.13.1/bin/node[2162]: void node::PlatformInit(ProcessInitializationFlags::Flags) at ../src/node.cc:621 # Assertion failed: (err) == (0) ----- Native stack trace ----- 1: 0x1083d67e6 node::Assert(node::AssertionInfo const&) [/.nvm/versions/node/v20.13.1/bin/node] # /.nvm/versions/node/v20.13.1/bin/node[2164]: void node::PlatformInit(ProcessInitializationFlags::Flags) at ../src/node.cc:621 # Assertion failed: (err) == (0) ----- Native stack trace -----
This worked fine on Lerna v6.
No error.
run-tests.sh
#!/usr/bin/env bash npx lerna exec "echo Hello" --scope=your-package-scope
I have tried using --max-buffer or --concurrency without success. Verbose logs also don't contain any information.
--max-buffer
--concurrency
lerna notice cli v8.1.8 lerna verb packageConfigs Explicit "packages" configuration found in lerna.json. Resolving packages using the configured glob(s): ["packages/*"] lerna verb rootPath /dev/instana/nodejs
Use watchexec -r. Switch to mocha --watch (preferred).
watchexec -r
mocha --watch
Darwin x86 and M1/M3. Tested multiple Node versions.
The text was updated successfully, but these errors were encountered:
@kirrg001 Please retry with the latest, some important internals were upgraded between 8.1.8 and 8.1.9
Sorry, something went wrong.
Thanks for your reply.
I have tried 8.1.9. I have tried 8.0.2.
Did not work.
Ok thanks @kirrg001 sorry to hear it hasn't helped.
I am not familiar with the tooling you have mentioned, and I will please need your help to dig any further.
Please provide a minimal reproduction repo that we can both access that demonstrates the problem.
Thank you!
No branches or pull requests
Current Behavior
entr
was working fine with Lerna v6. We have switched from Lerna v6 to v8.Now we are getting a Node native error when running our tests with
fd -e js -e mjs | entr run-tests.sh
:This worked fine on Lerna v6.
Expected Behavior
No error.
Steps to Reproduce
fd -e js -e mjs | entr run-tests.sh
run-tests.sh
I have tried using
--max-buffer
or--concurrency
without success.Verbose logs also don't contain any information.
Alternative
Use
watchexec -r
.Switch to
mocha --watch
(preferred).Environment
Darwin x86 and M1/M3.
Tested multiple Node versions.
The text was updated successfully, but these errors were encountered: