WIP: Initial bot prototype #7

Draft
hikari wants to merge 4 commits from feat/prototype into main
4 changed files with 18 additions and 31 deletions
Showing only changes of commit 5003386577 - Show all commits
+3 -13
View File
@@ -1,16 +1,6 @@
# New Repository Template # Rondelle
This template contains all of our basic files for a new GitHub repository. There is also a handy workflow that will create an issue on a new repository made from this template, with a checklist for the steps we usually take in setting up a new repository. A Discord bot to facilitate coffee chats or breakouts.
If you're starting a Node.JS project with TypeScript, we have a [specific template](https://github.com/naomi-lgbt/nodejs-typescript-template) for that purpose.
## Readme
Delete all of the above text (including this line), and uncomment the below text to use our standard readme template.
<!-- # Project Name
Project Description
## Live Version ## Live Version
@@ -36,4 +26,4 @@ Copyright held by Naomi Carrigan.
## Contact ## Contact
We may be contacted through our [Chat Server](http://chat.nhcarrigan.com) or via email at `contact@nhcarrigan.com`. --> We may be contacted through our [Chat Server](http://chat.nhcarrigan.com) or via email at `contact@nhcarrigan.com`.
+4 -2
View File
@@ -1,3 +1,5 @@
import Config from "@nhcarrigan/eslint-config"; import NaomisConfig from "@nhcarrigan/eslint-config";
export default Config; export default [
...NaomisConfig,
];
+10 -15
View File
@@ -1,27 +1,22 @@
{ {
"name": "rondelle", "name": "rondelle",
"version": "1.0.0", "version": "0.0.0",
"description": "", "description": "",
"main": "./dist/index.js", "main": "./prod/index.js",
"type": "module",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "eslint .", "start": "op run --env-file=prod.env -- node prod/index.js",
"test": "echo \"Error: no test specified\" && exit 1" "lint": "eslint src --max-warnings 0",
"test": "echo \"No tests yet\" && exit 0"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "Naomi Carrigan <contact@nhcarrigan.com>",
"license": "ISC", "license": "See LICENSE.md",
"packageManager": "pnpm@10.28.1", "type": "module",
"devDependencies": { "devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0", "@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0", "@nhcarrigan/typescript-config": "1.0.0",
"@types/node": "22.10.7", "@types/node": "22.10.6",
"eslint": "9.19.0",
"typescript": "5.7.3" "typescript": "5.7.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
} }
} }
+1 -1
View File
@@ -2,7 +2,7 @@
"extends": "@nhcarrigan/typescript-config", "extends": "@nhcarrigan/typescript-config",
"compilerOptions": { "compilerOptions": {
"rootDir": "./src", "rootDir": "./src",
"outDir": "./dist" "outDir": "./prod"
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }