diff options
author | Remco Bloemen <remco@wicked.ventures> | 2018-11-09 06:49:10 +0800 |
---|---|---|
committer | Remco Bloemen <remco@wicked.ventures> | 2018-11-09 06:49:10 +0800 |
commit | fd73c17db1346ce264700315f964d946216061a9 (patch) | |
tree | ea921806732a8a4b06bb3696581063bcd0481469 /packages/website/package.json | |
parent | d71362af993d3797dbdbfcac245ad57f0086bce3 (diff) | |
parent | 689f8f1fbc34b6fa976f95419804f9eee7e637f6 (diff) | |
download | dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.gz dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.bz2 dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.lz dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.xz dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.tar.zst dexon-sol-tools-fd73c17db1346ce264700315f964d946216061a9.zip |
Merge remote-tracking branch 'origin/development' into feature/utils/prettybignum
Diffstat (limited to 'packages/website/package.json')
-rw-r--r-- | packages/website/package.json | 9 |
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", |