Pterodactyl panel support part 2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
//PLEASE COMPILE USING "npm run build" BEFORE STARTING THE BOT!
|
||||
//OR USE "npm start" TO INSTANTLY COMPILE & START THE BOT!
|
||||
|
||||
const fs = require("fs")
|
||||
const child = require("child_process")
|
||||
if (!fs.existsSync("./dist/src/index.js")){
|
||||
console.log("Compiling the bot...")
|
||||
child.execSync("npm run build",{timeout:10000})
|
||||
console.log("\n\nFinished compilation!")
|
||||
}
|
||||
require("./dist/src/index")
|
||||
+2
-2
@@ -10,10 +10,10 @@
|
||||
"plugins",
|
||||
"discord-ticket-bot"
|
||||
],
|
||||
"main": "./src/index.ts",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "rm -rf ./dist/ && npx tsc -p ./tsconfig.json",
|
||||
"start": "npm run build && node ./dist/src/index.js",
|
||||
"start": "npm run build && node index.js",
|
||||
"test": "npm run start -- --dev-config --dev-database"
|
||||
},
|
||||
"type": "commonjs",
|
||||
|
||||
Reference in New Issue
Block a user