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": { | |
"build": "npm run clean && npm run compile", | |
"compile": "NODE_ENV=production webpack --config ./webpack.config.js --progress", | |
"clean": "rm -rf ./build/bundle*.js", | |
"sass-compile": "node-sass dist/scss -o dist/css", | |
"webpack": "webpack-dev-server --config ./webpack.dev.config.js --watch --open", | |
"start": "yarn run sass-compile && concurrently --kill-others \"yarn run sass-compile --watch\" \"yarn run webpack\"", | |
"test": "eslint **/*.js" | |
}, |
OlderNewer