Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Increase HEAP space for Instant
Browse files Browse the repository at this point in the history
  • Loading branch information
dekz committed Oct 4, 2019
1 parent 52d38c6 commit d4729e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
{
"path": "packages/instant/umd/instant.js",
"maxSize": "1460kB"
"maxSize": "1960kB"
}
],
"ci": {
Expand Down
2 changes: 1 addition & 1 deletion packages/instant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "0x Instant React Component",
"main": "umd/instant.js",
"scripts": {
"build": "webpack --mode production",
"build": "NODE_ENV=production node --max_old_space_size=8192 ../../node_modules/.bin/webpack --mode production",
"build:dev": "webpack --mode development",
"build:ci": "yarn build",
"dev": "dotenv webpack-dev-server -- --mode development",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class MeshOrderProvider extends BaseOrderProvider {
: new BigNumber(0);
// TODO(dekz): Remove the any hack when mesh is published v3
return {
// tslint:disable:no-unnecessary-type-assertion
order: orderEvent.signedOrder as any,
metaData: {
orderHash: orderEvent.orderHash,
Expand Down

0 comments on commit d4729e2

Please sign in to comment.