remove custom web3 js; use packaged one instead
This commit is contained in:
parent
791ea2bf1b
commit
5d8f236df3
File diff suppressed because one or more lines are too long
|
@ -292,7 +292,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("js/web3-1.0.min.js"));
|
||||
return next(null, fs.embarkPath("node_modules/web3"));
|
||||
} else {
|
||||
self.events.request("version:getPackageLocation", "web3", web3Version, function(err, location) {
|
||||
return next(null, fs.dappPath(location));
|
||||
|
@ -352,7 +352,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("js/web3-1.0.min.js")));
|
||||
return next(null, utils.joinPath(fs.embarkPath("node_modules/web3")));
|
||||
} else {
|
||||
self.events.request("version:getPackageLocation", "web3", web3Version, function(err, location) {
|
||||
return next(null, fs.dappPath(location));
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"config": "config/",
|
||||
"versions": {
|
||||
"solc": "0.4.24",
|
||||
"web3": "1.0.0-beta.34",
|
||||
"web3": "1.0.0-beta",
|
||||
"ipfs-api": "17.2.7"
|
||||
},
|
||||
"plugins": {
|
||||
|
|
Loading…
Reference in New Issue