mirror of
https://github.com/CompeyDev/create-guilded-bot.git
synced 2025-04-04 23:50:52 +01:00
refactor: directory structure
This commit is contained in:
parent
6dd1b02a2c
commit
e992c1546f
46 changed files with 280 additions and 745 deletions
|
@ -5,6 +5,6 @@
|
||||||
"files": [
|
"files": [
|
||||||
"base.json",
|
"base.json",
|
||||||
"nextjs.json",
|
"nextjs.json",
|
||||||
"react-library.json"
|
"default.json"
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -3,8 +3,8 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"libs/*",
|
"common/*/",
|
||||||
"packages/*/*"
|
"packages/*/*/"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "turbo run build",
|
"build": "turbo run build",
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "tsconfig/default.json",
|
|
||||||
"include": ["**/*.ts", "environment.d.ts", "javascript/src/index.js", "javascript/src/structures/Event.js", "javascript/src/structures/Command.js", "javascript/src/structures/Client.js", "javascript/src/events/ready.js", "javascript/src/commands/hi.js"],
|
|
||||||
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
import { Embed, Member, Message, User } from "guilded.js";
|
|
||||||
import { ExtendedClient } from "../structures/Client";
|
|
||||||
|
|
||||||
|
|
||||||
export type ResCtx = {
|
|
||||||
meta:
|
|
||||||
{
|
|
||||||
user: Member,
|
|
||||||
raw: Message,
|
|
||||||
},
|
|
||||||
ctx:
|
|
||||||
{
|
|
||||||
getOptions: () => null|string[],
|
|
||||||
reply: (content: string|Embed) => void
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
export type CommandType = {
|
|
||||||
name: string,
|
|
||||||
description: string,
|
|
||||||
run: (context: { interaction: ResCtx }) => {}
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
import { ClientEvents } from 'guilded.js'
|
|
||||||
export type extendedEvents = ClientEvents & {
|
|
||||||
interactionCreate: (...args) => unknown
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "../tsconfig.json",
|
|
||||||
}
|
|
||||||
|
|
10
packages/cli/lib/validateClient.ts
Normal file
10
packages/cli/lib/validateClient.ts
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import * as logger from "../utils/logger"
|
||||||
|
|
||||||
|
export default function verify() {
|
||||||
|
const NODE_VERSION = process.version.split("v")[1] as unknown as number
|
||||||
|
|
||||||
|
if (NODE_VERSION !>= 12) {
|
||||||
|
logger.error(`Detected node ${NODE_VERSION}. At least node v12 required.`)
|
||||||
|
process.exit(1)
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,8 +8,8 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"dev": "ts-node-dev src/index.ts",
|
"dev": "ts-node-dev ./src/index.ts",
|
||||||
"start": "ts-node src/index.ts"
|
"start": "ts-node ./src/index.ts"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
|
@ -19,6 +19,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.1.3",
|
"axios": "^1.1.3",
|
||||||
|
"eslint-config-custom": "workspace:*",
|
||||||
"fs-extra": "^10.1.0",
|
"fs-extra": "^10.1.0",
|
||||||
"inquirer": "8.2.3",
|
"inquirer": "8.2.3",
|
||||||
"kleur": "^4.1.5",
|
"kleur": "^4.1.5",
|
||||||
|
|
|
@ -10,6 +10,7 @@ import constants from "../lib/constants"
|
||||||
import getConstant from "../lib/constants";
|
import getConstant from "../lib/constants";
|
||||||
import stream from "got";
|
import stream from "got";
|
||||||
import unzip from "unzip-stream";
|
import unzip from "unzip-stream";
|
||||||
|
import validateClient from "../lib/validateClient";
|
||||||
|
|
||||||
const weclomeASCII = getConstant("welcomeMessage")
|
const weclomeASCII = getConstant("welcomeMessage")
|
||||||
console.log(weclomeASCII)
|
console.log(weclomeASCII)
|
||||||
|
@ -33,6 +34,7 @@ inquirer
|
||||||
|
|
||||||
])
|
])
|
||||||
.then((answers) => {
|
.then((answers) => {
|
||||||
|
validateClient()
|
||||||
mkdir(answers.location, (e) => {
|
mkdir(answers.location, (e) => {
|
||||||
if (e && e.code != "EEXIST") {
|
if (e && e.code != "EEXIST") {
|
||||||
logger.error("Failed to create project directory.")
|
logger.error("Failed to create project directory.")
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "tsconfig/default",
|
"extends": "tsconfig/default.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "dist"
|
"outDir": "dist"
|
||||||
}
|
}
|
||||||
|
|
3
packages/framework/tsconfig.json
Normal file
3
packages/framework/tsconfig.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"extends": "tsconfig/default.json"
|
||||||
|
}
|
|
@ -7,8 +7,8 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"dev": "ts-node-dev src/index.ts",
|
"dev": "ts-node-dev ./src/index.ts",
|
||||||
"start": "ts-node src/index.ts"
|
"start": "ts-node ./src/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
|
@ -21,7 +21,6 @@
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"eslint-config-custom": "workspace:*",
|
"eslint-config-custom": "workspace:*",
|
||||||
"eslint": "7.32.0",
|
"eslint": "7.32.0",
|
||||||
"tsconfig": "workspace:*",
|
|
||||||
"ts-node-dev": "^2.0.0",
|
"ts-node-dev": "^2.0.0",
|
||||||
"tslib": "^2.4.1",
|
"tslib": "^2.4.1",
|
||||||
"typescript": "4.8.4"
|
"typescript": "4.8.4"
|
11
packages/framework/typescript/tsconfig.json
Normal file
11
packages/framework/typescript/tsconfig.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"extends": "../tsconfig.json",
|
||||||
|
"include": [
|
||||||
|
"**/*.ts",
|
||||||
|
"environment.d.ts",
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
]
|
||||||
|
}
|
901
pnpm-lock.yaml
generated
901
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,3 @@
|
||||||
packages:
|
packages:
|
||||||
- "libs/*"
|
- "common/*/"
|
||||||
- "packages/*"
|
- "packages/*/*/"
|
||||||
|
|
Loading…
Add table
Reference in a new issue