mirror of
https://github.com/embarklabs/embark-solc.git
synced 2025-02-28 14:30:36 +00:00
Compilation error `Unknown key “path”` was present when using Solidity 0.5.x. This PR removes the path property from the compilation sources as it is not needed.
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
/*global require, module*/
|
|
const Compiler = require("./lib/Compiler");
|
|
const semver = require('semver');
|
|
|
|
module.exports = (embark) => {
|
|
if (embark.config.embarkConfig.versions.solc) {
|
|
embark.registerCompiler('.sol', (contractFiles, options, cb) => {
|
|
if (!contractFiles || !contractFiles.length) {
|
|
return cb();
|
|
}
|
|
Compiler.getSolcVersion(embark.logger, (err, version) => {
|
|
if (err) {
|
|
embark.logger.error(err);
|
|
embark.logger.error("Error getting solc's version. Will default back to Embark's compiler");
|
|
return cb(null, false);
|
|
}
|
|
if (semver.lt(version, embark.config.embarkConfig.versions.solc)) {
|
|
embark.logger.warn(`Current version of solc lower than version in embark.json`);
|
|
embark.logger.warn(`Current: ${version} | Wanted: ${embark.config.embarkConfig.versions.solc}`);
|
|
embark.logger.warn('Will default back to Embark\'s compiler');
|
|
return cb(null, false);
|
|
}
|
|
Compiler.compileSolc(embark, contractFiles, embark.config.contractDirectories, options, cb);
|
|
});
|
|
});
|
|
|
|
}
|
|
};
|