chore: fix up the scaffolding

This commit is contained in:
2026-01-21 16:08:44 -08:00
parent 2352f45794
commit 5003386577
4 changed files with 18 additions and 31 deletions
+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.
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
A Discord bot to facilitate coffee chats or breakouts.
## Live Version
@@ -36,4 +26,4 @@ Copyright held by Naomi Carrigan.
## 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",
"version": "1.0.0",
"version": "0.0.0",
"description": "",
"main": "./dist/index.js",
"type": "module",
"main": "./prod/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
"start": "op run --env-file=prod.env -- node prod/index.js",
"lint": "eslint src --max-warnings 0",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.1",
"author": "Naomi Carrigan <contact@nhcarrigan.com>",
"license": "See LICENSE.md",
"type": "module",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "22.10.7",
"eslint": "9.19.0",
"@nhcarrigan/typescript-config": "1.0.0",
"@types/node": "22.10.6",
"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",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
"outDir": "./prod"
},
"include": ["src/**/*"]
}