Created
December 29, 2023 04:03
-
-
Save spring8904/69a0bc5fc846d1f86ece771c3c439ced to your computer and use it in GitHub Desktop.
build babel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"start": "npm run build && node build/app.js", | |
"dev": "nodemon --exec babel-node src/app.js", | |
"build": "npm run clean && npm run build-babel", | |
"build-babel": "babel src -d build", | |
"clean": "rm -rf build && mkdir build" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment