mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-02 09:44:14 +00:00
12 lines
No EOL
233 B
JavaScript
12 lines
No EOL
233 B
JavaScript
import * as api from "./api.js";
|
|
|
|
console.log("Compilation started");
|
|
|
|
try {
|
|
api.compile_to_target();
|
|
} catch (error) {
|
|
console.error(`Failed to compile, Error: ${error}`);
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log("Compiled successfully"); |