mirror of
https://github.com/CompeyDev/create-guilded-bot.git
synced 2025-04-03 15:20:53 +01:00
refactor: directory structure
This commit is contained in:
parent
6dd1b02a2c
commit
e992c1546f
46 changed files with 280 additions and 745 deletions
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"extends": "./base.json",
|
||||
"compilerOptions": {
|
||||
"lib": ["ESNext"],
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"target": "ESNext",
|
||||
"outDir": "dist",
|
||||
"sourceMap": false,
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true,
|
||||
"skipDefaultLibCheck": true,
|
||||
"resolveJsonModule": true,
|
||||
"importHelpers": true,
|
||||
"rootDirs": ["src", "lib"]
|
||||
}
|
||||
}
|
||||
{
|
||||
"extends": "./base.json",
|
||||
"compilerOptions": {
|
||||
"lib": ["ESNext"],
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"target": "ESNext",
|
||||
"outDir": "dist",
|
||||
"sourceMap": false,
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true,
|
||||
"skipDefaultLibCheck": true,
|
||||
"resolveJsonModule": true,
|
||||
"importHelpers": true,
|
||||
"rootDirs": ["src", "lib"]
|
||||
}
|
||||
}
|
|
@ -5,6 +5,6 @@
|
|||
"files": [
|
||||
"base.json",
|
||||
"nextjs.json",
|
||||
"react-library.json"
|
||||
"default.json"
|
||||
]
|
||||
}
|
|
@ -3,8 +3,8 @@
|
|||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"libs/*",
|
||||
"packages/*/*"
|
||||
"common/*/",
|
||||
"packages/*/*/"
|
||||
],
|
||||
"scripts": {
|
||||
"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": {
|
||||
"build": "tsc",
|
||||
"dev": "ts-node-dev src/index.ts",
|
||||
"start": "ts-node src/index.ts"
|
||||
"dev": "ts-node-dev ./src/index.ts",
|
||||
"start": "ts-node ./src/index.ts"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
|
@ -19,6 +19,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"axios": "^1.1.3",
|
||||
"eslint-config-custom": "workspace:*",
|
||||
"fs-extra": "^10.1.0",
|
||||
"inquirer": "8.2.3",
|
||||
"kleur": "^4.1.5",
|
||||
|
|
|
@ -10,6 +10,7 @@ import constants from "../lib/constants"
|
|||
import getConstant from "../lib/constants";
|
||||
import stream from "got";
|
||||
import unzip from "unzip-stream";
|
||||
import validateClient from "../lib/validateClient";
|
||||
|
||||
const weclomeASCII = getConstant("welcomeMessage")
|
||||
console.log(weclomeASCII)
|
||||
|
@ -33,6 +34,7 @@ inquirer
|
|||
|
||||
])
|
||||
.then((answers) => {
|
||||
validateClient()
|
||||
mkdir(answers.location, (e) => {
|
||||
if (e && e.code != "EEXIST") {
|
||||
logger.error("Failed to create project directory.")
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "tsconfig/default",
|
||||
"extends": "tsconfig/default.json",
|
||||
"compilerOptions": {
|
||||
"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,
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"dev": "ts-node-dev src/index.ts",
|
||||
"start": "ts-node src/index.ts"
|
||||
"dev": "ts-node-dev ./src/index.ts",
|
||||
"start": "ts-node ./src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"dotenv": "^16.0.3",
|
||||
|
@ -21,7 +21,6 @@
|
|||
"ts-node": "^10.9.1",
|
||||
"eslint-config-custom": "workspace:*",
|
||||
"eslint": "7.32.0",
|
||||
"tsconfig": "workspace:*",
|
||||
"ts-node-dev": "^2.0.0",
|
||||
"tslib": "^2.4.1",
|
||||
"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:
|
||||
- "libs/*"
|
||||
- "packages/*"
|
||||
- "common/*/"
|
||||
- "packages/*/*/"
|
||||
|
|
Loading…
Add table
Reference in a new issue