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
When I do ./node_modules/.bin/node-dev -- launch.js it displays 1 which is normal because node-dev adds a listener.
But when I do this /node_modules/.bin/node-dev -r ts-node/register -- launch.js; it displays 2. It means that sometimes my process never ends because node-dev check for this counter.
FYI, I ran this: node -r ts-node/register launch.js and it displays 0.
Do you have any idea on how I could fix this?
Thank you
The text was updated successfully, but these errors were encountered:
Hey!
I have a little question about the
-r
option. I don't know if it's a bug or related to something else (ts-node
?).Here is my
launch.js
:When I do
./node_modules/.bin/node-dev -- launch.js
it displays1
which is normal becausenode-dev
adds a listener.But when I do this
/node_modules/.bin/node-dev -r ts-node/register -- launch.js
; it displays2
. It means that sometimes my process never ends becausenode-dev
check for this counter.FYI, I ran this:
node -r ts-node/register launch.js
and it displays0
.Do you have any idea on how I could fix this?
Thank you
The text was updated successfully, but these errors were encountered: