From d645d406c816ed2f3b5afb651501c22949b5eead Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Fri, 24 Jan 2025 17:21:42 -0600 Subject: [PATCH] change default config --- package.json | 2 +- template-js/src/config.js | 4 ++-- template-ts/src/config.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 22c1c16..7755dc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sern/create-bot", - "version": "1.10.2", + "version": "1.10.3", "main": "./dist/index.js", "license": "MIT", "scripts": { diff --git a/template-js/src/config.js b/template-js/src/config.js index 31bdebe..d1298ec 100644 --- a/template-js/src/config.js +++ b/template-js/src/config.js @@ -3,10 +3,10 @@ //commands directory. REQUIRED export const commands = './dist/commands' // events directory. -export const events = './dist/events' +//export const events = './dist/events' // schedule tasks and declare them here -export const tasks = './dist/tasks' +//export const tasks = './dist/tasks' // defaultPrefix: if omitted, sern will disable all text/prefix commands export const defaultPrefix = '?' diff --git a/template-ts/src/config.ts b/template-ts/src/config.ts index 31bdebe..4697dd4 100644 --- a/template-ts/src/config.ts +++ b/template-ts/src/config.ts @@ -3,10 +3,10 @@ //commands directory. REQUIRED export const commands = './dist/commands' // events directory. -export const events = './dist/events' +// export const events = './dist/events' // schedule tasks and declare them here -export const tasks = './dist/tasks' +// export const tasks = './dist/tasks' // defaultPrefix: if omitted, sern will disable all text/prefix commands export const defaultPrefix = '?'