aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/package.json
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-11-08 07:26:01 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-11-08 07:41:05 +0800
commit370452238f0cb221ee80f71939a7049ea3de7add (patch)
tree7312d849041d49fe3d4583a5f1c6af34743d36f8 /packages/website/package.json
parent95b2898b9c0898c7e2d98ee603bff0604bf2a829 (diff)
downloaddexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar.gz
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar.bz2
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar.lz
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar.xz
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.tar.zst
dexon-sol-tools-370452238f0cb221ee80f71939a7049ea3de7add.zip
fix(website): turn off production flag when building locally
Diffstat (limited to 'packages/website/package.json')
-rw-r--r--packages/website/package.json9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/website/package.json b/packages/website/package.json
index efb97d309..dd14d4b17 100644
--- a/packages/website/package.json
+++ b/packages/website/package.json
@@ -7,14 +7,15 @@
"private": true,
"description": "Website and 0x portal dapp",
"scripts": {
- "build": "node --max_old_space_size=8192 ../../node_modules/.bin/webpack --mode production",
+ "build": "yarn build:dev",
+ "build:prod": "node --max_old_space_size=8192 ../../node_modules/.bin/webpack --mode production",
"build:dev": "../../node_modules/.bin/webpack --mode development",
"clean": "shx rm -f public/bundle*",
"lint": "tslint --format stylish --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"dev": "webpack-dev-server --mode development --content-base public --https",
- "deploy_dogfood": "npm run build; aws s3 sync ./public/. s3://dogfood.0xproject.com --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
- "deploy_staging": "npm run build; aws s3 sync ./public/. s3://staging-0xproject --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
- "deploy_live": "DEPLOY_ROLLBAR_SOURCEMAPS=true npm run build; aws s3 sync ./public/. s3://0xproject.com --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --exclude *.map.js"
+ "deploy_dogfood": "npm run build:prod; aws s3 sync ./public/. s3://dogfood.0xproject.com --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
+ "deploy_staging": "npm run build:prod; aws s3 sync ./public/. s3://staging-0xproject --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
+ "deploy_live": "DEPLOY_ROLLBAR_SOURCEMAPS=true npm run build:prod; aws s3 sync ./public/. s3://0xproject.com --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --exclude *.map.js"
},
"author": "Fabio Berger",
"license": "Apache-2.0",