This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| modified src/lib/utils/utils.js | |
| @@ -96,15 +96,15 @@ function pingEndpoint(host, port, type, protocol, origin, callback) { | |
| host: host, | |
| port: port | |
| }; | |
| - if (type === 'ws') { | |
| - options.headers = { | |
| - 'Sec-WebSocket-Version': 13, | |
| - Connection: 'Upgrade', | |
| - Upgrade: 'websocket', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| modified src/lib/core/fs.js | |
| @@ -38,6 +38,10 @@ function mkdirp() { | |
| return restrictPath(fs.mkdirp, fs.mkdirp, 1, arguments); | |
| } | |
| +function mkdtempSync() { | |
| + return restrictPath(fs.mkdtempSync, fs.mkdtempSync, 1, arguments); | |
| +} | |
| + | |
| function readdir() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| modified .travis.yml | |
| @@ -12,7 +12,6 @@ before_install: | |
| cache: | |
| yarn: true | |
| install: | |
| - - yarn cache clean | |
| - yarn install | |
| - cd embark-ui && yarn install && cd .. | |
| - git status && test -z "$(git status --porcelain)" | |
| modified appveyor.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| modified .travis.yml | |
| @@ -10,8 +10,9 @@ before_install: | |
| - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3 | |
| - export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" | |
| cache: | |
| - yarn: false | |
| + yarn: true | |
| install: | |
| + - yarn cache clean | |
| - yarn install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "type-check": "tsc", | |
| "type-check:watch": "npm run type-check -- --watch" | |
| }, | |
| + "resolutions": { | |
| + "**/ethereumjs-vm": "2.4.0" | |
| + }, | |
| "dependencies": { | |
| "@babel/core": "7.1.2", | |
| "@babel/plugin-proposal-class-properties": "7.1.0", | |
| @@ -140,7 +143,7 @@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "type-check": "tsc", | |
| "type-check:watch": "npm run type-check -- --watch" | |
| }, | |
| + "resolutions": { | |
| + "remix-debug-debugtest/ethereumjs-vm": "2.4.0" | |
| + }, | |
| "dependencies": { | |
| "@babel/core": "7.1.2", | |
| "@babel/plugin-proposal-class-properties": "7.1.0", | |
| @@ -140,7 +143,7 @@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ┌─[lts=🄽 10.13.0📦6.4.1][±][master U:3 ✗][~/repos/embark/package/node_modules] | |
| └─▪ tree | |
| . | |
| ├── http-proxy | |
| │ ├── CODE_OF_CONDUCT.md | |
| │ ├── LICENSE | |
| │ ├── README.md | |
| │ ├── codecov.yml | |
| │ ├── coverage | |
| │ │ ├── lcov-report |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/config/blockchain.js b/config/blockchain.js | |
| index ed22d42..a2888c0 100644 | |
| --- a/config/blockchain.js | |
| +++ b/config/blockchain.js | |
| @@ -6,7 +6,7 @@ module.exports = { | |
| rpcPort: 8545, // HTTP-RPC server listening port (default: 8545) | |
| rpcCorsDomain: "auto", // Comma separated list of domains from which to accept cross origin requests (browser enforced) | |
| // When set to "auto", Embark will automatically set the cors to the address of the webserver | |
| - wsRPC: true, // Enable the WS-RPC server | |
| + wsRPC: false, // Enable the WS-RPC server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", | |
| "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" | |
| }, | |
| - "debug": { | |
| - "version": "2.6.9", | |
| - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", | |
| - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", | |
| - "requires": { | |
| - "ms": "2.0.0" | |
| - } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| embark run infura --nobrowser --nodashboard | |
| Account settings are needed for this chain. Please put a valid address and possibly a password in your blockchain config or use a dev chain. | |
| pid 23449 listening on /Users/michael/dapps/infura/embark_demo/.embark/embark.ipc | |
| ======================== | |
| Welcome to Embark 3.2.0-develop | |
| ======================== | |
| ready to watch file changes | |
| IPFS node not found, attempting to start own node | |
| Starting ipfs process | |
| webserver available at http://localhost:8000 |