mirror of https://github.com/embarklabs/embark.git
Merge pull request #796 from embark-framework/bug_fix/web3-location
getWeb3Location should use require.resolve()
This commit is contained in:
commit
4128a96997
|
@ -5,6 +5,7 @@ let proxy = require('./proxy');
|
|||
const Ipc = require('../../core/ipc');
|
||||
const constants = require('../../constants.json');
|
||||
const {defaultHost, dockerHostSwap} = require('../../utils/host');
|
||||
const fs = require('../../core/fs.js');
|
||||
|
||||
class Simulator {
|
||||
constructor(options) {
|
||||
|
@ -15,7 +16,7 @@ class Simulator {
|
|||
run(options) {
|
||||
let cmds = [];
|
||||
|
||||
const ganache_main = require.resolve('ganache-cli');
|
||||
const ganache_main = require.resolve('ganache-cli', {paths: fs.embarkPath('node_modules')});
|
||||
const ganache_json = pkgUp.sync(path.dirname(ganache_main));
|
||||
const ganache_root = path.dirname(ganache_json);
|
||||
const ganache_bin = require(ganache_json).bin;
|
||||
|
|
|
@ -289,7 +289,7 @@ class CodeGenerator {
|
|||
function getWeb3Location(next) {
|
||||
self.events.request("version:get:web3", function(web3Version) {
|
||||
if (web3Version === "1.0.0-beta") {
|
||||
return next(null, fs.embarkPath("node_modules/web3"));
|
||||
return next(null, require.resolve("web3", {paths: fs.embarkPath("node_modules")}));
|
||||
}
|
||||
self.events.request("version:getPackageLocation", "web3", web3Version, function(err, location) {
|
||||
return next(null, fs.dappPath(location));
|
||||
|
@ -350,7 +350,7 @@ class CodeGenerator {
|
|||
function getWeb3Location(next) {
|
||||
self.events.request("version:get:web3", function(web3Version) {
|
||||
if (web3Version === "1.0.0-beta") {
|
||||
return next(null, utils.joinPath(fs.embarkPath("node_modules/web3")));
|
||||
return next(null, require.resolve("web3", {paths: fs.embarkPath("node_modules")}));
|
||||
}
|
||||
self.events.request("version:getPackageLocation", "web3", web3Version, function(err, location) {
|
||||
return next(null, fs.dappPath(location));
|
||||
|
|
Loading…
Reference in New Issue