Fix prepare-docs-solc.js for Hardhat

pull/2502/head^2
Francisco Giordano 4 years ago
parent 9425a7e0ab
commit ed7623273a
  1. 21
      scripts/prepare-docs-solc.js

@ -1,11 +1,16 @@
const path = require('path'); const hre = require('hardhat');
const bre = require('@nomiclabs/buidler');
const { Compiler } = require('@nomiclabs/buidler/internal/solidity/compiler'); const { getCompilersDir } = require('hardhat/internal/util/global-dir');
const { CompilerDownloader } = require('hardhat/internal/solidity/compiler/downloader');
const { Compiler } = require('hardhat/internal/solidity/compiler');
const compiler = new Compiler( const [{ version }] = hre.config.solidity.compilers;
bre.config.solc.version,
path.join(bre.config.paths.cache, 'compilers'),
);
module.exports = Object.assign(compiler.getSolc(), { __esModule: true }); async function getSolc () {
const downloader = new CompilerDownloader(await getCompilersDir(), { forceSolcJs: true });
const { compilerPath } = await downloader.getDownloadedCompilerPath(version);
const compiler = new Compiler(compilerPath);
return compiler.getSolc();
}
module.exports = Object.assign(getSolc(), { __esModule: true });

Loading…
Cancel
Save