Skip to content

Commit

Permalink
Merge pull request MyEtherWallet#2388 from MyEtherWallet/fix/sentry
Browse files Browse the repository at this point in the history
Fix/sentry kvhnuke [v5]
  • Loading branch information
gamalielhere authored May 26, 2020
2 parents 5e05c91 + e22b33c commit 11f3e4f
Show file tree
Hide file tree
Showing 26 changed files with 229 additions and 306 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Bug

- Fix errors from sentry [#2388](https://github.com/MyEtherWallet/MyEtherWallet/pull/2388)

### Devop

- Update terms of service [#2394](https://github.com/MyEtherWallet/MyEtherWallet/pull/2394)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:10.17.0-stretch

ENV HOME /home
ENV NODE_OPTIONS --max-old-space-size=7168
ENV NODE_OPTIONS --max-old-space-size=6144
RUN npm install [email protected] -g
RUN node -v && npm -v
COPY package*.json ./
Expand Down
4 changes: 2 additions & 2 deletions ENV_VARS.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module.exports = {
VERSION: JSON.stringify(version),
ROUTER_MODE: JSON.stringify(process.env.ROUTER_MODE || 'hash'),
BUILD_TYPE: JSON.stringify(process.env.BUILD_TYPE || 'web'),
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
FULL_SOURCEMAPS: JSON.stringify(process.env.FULL_SOURCEMAPS || 'false')
FULL_SOURCEMAPS: JSON.stringify(process.env.FULL_SOURCEMAPS || 'false'),
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
};
Loading

0 comments on commit 11f3e4f

Please sign in to comment.