fix duplicate dependencies and warn correctly for length
This commit is contained in:
parent
5d8f236df3
commit
6908cf5cdc
|
@ -184,6 +184,9 @@ class ContractDeployer {
|
|||
if (linkReference.length > 40) {
|
||||
return next(new Error(__("{{linkReference}} is too long, try reducing the path of the contract ({{filename}}) and/or its name {{contractName}}", {linkReference: linkReference, filename: filename, contractName: contractObj.className})));
|
||||
}
|
||||
if (contractCode.indexOf(linkReference) < 0) {
|
||||
continue;
|
||||
}
|
||||
let toReplace = linkReference + "_".repeat(40 - linkReference.length);
|
||||
if (deployedAddress === undefined) {
|
||||
let libraryName = contractObj.className;
|
||||
|
|
|
@ -212,7 +212,7 @@ class ContractsManager {
|
|||
contract = self.contracts[className];
|
||||
|
||||
// look in code for dependencies
|
||||
let libMatches = (contract.code.match(/\:(.*?)(?=_)/g) || []);
|
||||
let libMatches = (contract.code.match(/:(.*?)(?=_)/g) || []);
|
||||
for (let match of libMatches) {
|
||||
self.contractDependencies[className] = self.contractDependencies[className] || [];
|
||||
self.contractDependencies[className].push(match.substr(1));
|
||||
|
@ -248,14 +248,24 @@ class ContractsManager {
|
|||
}
|
||||
|
||||
// look in onDeploy for dependencies
|
||||
if (contract.onDeploy === [] || contract.onDeploy === undefined) continue;
|
||||
let regex = /\$\w+/g;
|
||||
contract.onDeploy.map((cmd) => {
|
||||
cmd.replace(regex, (match) => {
|
||||
self.contractDependencies[className] = self.contractDependencies[className] || [];
|
||||
self.contractDependencies[className].push(match.substr(1));
|
||||
if (contract.onDeploy !== [] && contract.onDeploy !== undefined) {
|
||||
let regex = /\$\w+/g;
|
||||
contract.onDeploy.map((cmd) => {
|
||||
cmd.replace(regex, (match) => {
|
||||
self.contractDependencies[className] = self.contractDependencies[className] || [];
|
||||
self.contractDependencies[className].push(match.substr(1));
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Remove duplicates
|
||||
if (self.contractDependencies[className]) {
|
||||
const o = {};
|
||||
self.contractDependencies[className].forEach(function (e) {
|
||||
o[e] = true;
|
||||
});
|
||||
self.contractDependencies[className] = Object.keys(o);
|
||||
}
|
||||
}
|
||||
callback();
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue