ethers.js/misc/admin/src.ts/cmds/update-exports.ts

43 lines
883 B
TypeScript
Raw Normal View History

"use strict";
2020-09-23 05:54:48 +03:00
import fs from "fs";
2020-09-23 05:54:48 +03:00
import { colorify } from "../log";
import { resolve } from "../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
////////////////////
2020-09-23 05:54:48 +03:00
console.log(colorify.bold(`Flattening exports...`))
fs.writeFileSync(resolve("packages/ethers/src.ts/index.ts"), output);