diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-07-10 09:04:55 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-07-10 09:04:55 +0800 |
commit | a2672a0d783fc53d515fa28b70e23e8036459af8 (patch) | |
tree | cd738d44975a7b2c2c4c1a6d68ce0a503d54628f /packages/website/package.json | |
parent | ee5ac6b800c16ad16fffe45c168df2a1434e7488 (diff) | |
download | dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar.gz dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar.bz2 dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar.lz dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar.xz dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.tar.zst dexon-sol-tools-a2672a0d783fc53d515fa28b70e23e8036459af8.zip |
Get rollbar uploads working by enabling sourcemaps
Diffstat (limited to 'packages/website/package.json')
-rw-r--r-- | packages/website/package.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/packages/website/package.json b/packages/website/package.json index 332857dd3..b5b4b6119 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -11,9 +11,12 @@ "clean": "shx rm -f public/bundle*", "lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'", "watch_without_deps": "webpack-dev-server --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": "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" + "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": + "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" }, "author": "Fabio Berger", "license": "Apache-2.0", |