Created
December 10, 2018 14:35
-
-
Save stephencweiss/6a5919ace98fcb4918f68f1e061bf5c2 to your computer and use it in GitHub Desktop.
Scripts to run with your project that will bundle according to the development and production configurations.
This file contains 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
//package.json | |
... | |
"scripts": { | |
... | |
"bundle:dev": "webpack --watch --debug --mode='development'", | |
"bundle:prod": "webpack --watch --mode='production'", | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment