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
I've tried to add --watch option manually and also the suggestions here but nothing's working.
--watch
My script block looks like this
"scripts": { ... "clean": "rm -rf build && mkdir build", "dev": "yarn clean && babel src -w -d build --extensions '.ts'", "dev-start": "babel-watch build/index.js -w [build]", "dev-nodemon-start": "nodemon --exec babel-node build/index.js" },
Everything work as expected when I use nodemon. But restarting does happen when I use babel-watch
nodemon
babel-watch
I'm on Mac M1.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've tried to add
--watch
option manually and also the suggestions here but nothing's working.My script block looks like this
Everything work as expected when I use
nodemon
. But restarting does happen when I usebabel-watch
I'm on Mac M1.
The text was updated successfully, but these errors were encountered: