You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nucleus/Installer.js

10 lines
188 B

let format;
try {
format = await import("./dist/config/format.js");
} catch (e) {
console.log("Please run `yarn` and `yarn build` first.");
}
await format(true);
process.exit(0);