Update dist

This commit is contained in:
2026-03-19 05:27:31 +01:00
parent 00fed4336d
commit f722d4ae47
19 changed files with 296 additions and 26 deletions
+3 -1
View File
@@ -2,11 +2,13 @@ import { Command } from "commander";
import grabConfig from "../../functions/grab-config";
import startServer from "../../functions/server/start-server";
import init from "../../functions/init";
import { log } from "../../utils/log";
export default function () {
return new Command("dev")
.description("Run development server")
.action(async () => {
console.log(`Running development server ...`);
log.banner();
log.info("Running development server ...");
await init();
const config = (await grabConfig()) || {};
global.CONFIG = {