Thanks, this is useful feedback.
Yes the path is now absolute but it points to the file under
lib/bs, before I think it was relative to the project root.
Yeah, the path under the project makes more sense.
- The script you pass to
cmdused to be run with apwdthat I think wasnode_modules/rescript, now it’s run with the expectedpwdof the project root.
The pwd of the rescript execution makes most sense to me here.
- It totally swallows console/stdin streams.
echofrom the script orconsole.log()from child node processes are swallowed. I had toecho ... >> ./tmp.txtto do some logging.
Good point, this is annoying, we should pipe the stdout/stderr to the current rescript process.
These points are worth revisiting in v13. Will take a look at this eventually.
Thanks for testing!