Remove exit 0 from website build command

This commit is contained in:
Brandon Millman
2018-08-20 12:19:26 -07:00
parent 67b4ba2a57
commit cbe0ffb3ce

View File

@@ -7,7 +7,7 @@
"private": true, "private": true,
"description": "Website and 0x portal dapp", "description": "Website and 0x portal dapp",
"scripts": { "scripts": {
"build": "NODE_ENV=production node --max_old_space_size=8192 ../../node_modules/.bin/webpack; exit 0;", "build": "NODE_ENV=production node --max_old_space_size=8192 ../../node_modules/.bin/webpack",
"clean": "shx rm -f public/bundle*", "clean": "shx rm -f public/bundle*",
"lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'", "lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"watch_without_deps": "webpack-dev-server --content-base public --https", "watch_without_deps": "webpack-dev-server --content-base public --https",