33 lines
796 B
JavaScript
33 lines
796 B
JavaScript
"use strict";
|
|
const fs = require("fs");
|
|
const { resolve } = require("../path");
|
|
const sourceEthers = fs.readFileSync(resolve("packages/ethers/src.ts/ethers.ts")).toString();
|
|
const targets = sourceEthers.match(/export\s*{\s*((.|\s)*)}/)[1].trim();
|
|
////////////////////
|
|
// Begin template
|
|
////////////////////
|
|
const output = `"use strict";
|
|
|
|
// To modify this file, you must update ./misc/admin/lib/cmds/update-exports.js
|
|
|
|
import * as ethers from "./ethers";
|
|
|
|
try {
|
|
const anyGlobal = (window as any);
|
|
|
|
if (anyGlobal._ethers == null) {
|
|
anyGlobal._ethers = ethers;
|
|
}
|
|
} catch (error) { }
|
|
|
|
export { ethers };
|
|
|
|
export {
|
|
${targets}
|
|
} from "./ethers";
|
|
`;
|
|
////////////////////
|
|
// End template
|
|
////////////////////
|
|
fs.writeFileSync(resolve("packages/ethers/src.ts/index.ts"), output);
|