Update to electron v2.0.1 (#2401)

* Remove extra parenthesis causing warnings on latest chromium

* Update to electron 2.0.1

* Move all @types dependencies to devDependencies

* Update electron-builder/electron-updater

* Update to Node.js 8.9.3 to match Electron 2.0.1
This commit is contained in:
Scott Nonnenberg 2018-05-23 12:17:58 -07:00 committed by GitHub
parent a328a70ba2
commit e02887565b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 216 additions and 150 deletions

View file

@ -22848,7 +22848,7 @@ function _memset(ptr, value, num) {
}
}
while ((ptr|0) < (stop4|0)) {
HEAP32[((ptr)>>2)]=value4;
HEAP32[ptr>>2]=value4;
ptr = (ptr+4)|0;
}
}
@ -22904,7 +22904,7 @@ function _memcpy(dest, src, num) {
num = (num-1)|0;
}
while ((num|0) >= 4) {
HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0);
HEAP32[dest>>2]=((HEAP32[src>>2])|0);
dest = (dest+4)|0;
src = (src+4)|0;
num = (num-4)|0;