refactor: directory structure

This commit is contained in:
Erica Marigold 2022-11-22 14:36:12 +05:30
parent 6dd1b02a2c
commit e992c1546f
No known key found for this signature in database
GPG key ID: 23CD97ABBBCC5ED2
46 changed files with 280 additions and 745 deletions

View file

@ -5,6 +5,6 @@
"files": [ "files": [
"base.json", "base.json",
"nextjs.json", "nextjs.json",
"react-library.json" "default.json"
] ]
} }

View file

@ -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",

View file

@ -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"]
}

View file

@ -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 }) => {}
}

View file

@ -1,4 +0,0 @@
import { ClientEvents } from 'guilded.js'
export type extendedEvents = ClientEvents & {
interactionCreate: (...args) => unknown
}

View file

@ -1,4 +0,0 @@
{
"extends": "../tsconfig.json",
}

View 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)
}
}

View file

@ -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",

View file

@ -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.")

View file

@ -1,5 +1,5 @@
{ {
"extends": "tsconfig/default", "extends": "tsconfig/default.json",
"compilerOptions": { "compilerOptions": {
"outDir": "dist" "outDir": "dist"
} }

View file

@ -0,0 +1,3 @@
{
"extends": "tsconfig/default.json"
}

View file

@ -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"

View file

@ -0,0 +1,11 @@
{
"extends": "../tsconfig.json",
"include": [
"**/*.ts",
"environment.d.ts",
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}

901
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,3 @@
packages: packages:
- "libs/*" - "common/*/"
- "packages/*" - "packages/*/*/"