feat(linting): adding in the checks to make me better and not so sloppy

This commit is contained in:
2025-12-22 15:59:49 -06:00
parent 6bb27e588d
commit a31b516538
14 changed files with 191 additions and 62 deletions

View File

@@ -7,15 +7,16 @@
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "dotenvx run -f .env -- npm run dev:app",
"dev:app": "cd backend && tsx watch app.ts",
"prebuild": "tsx backend/src/scaler/generateSpec.ts",
"build": "esbuild backend/app.ts --bundle --platform=node --minify --outfile=dist/index.js --format=esm --packages=external",
"build": "npm run specCheck && npm run lint && npm run build:app",
"build:app": "ncc build backend/app.ts -o dist -m -s",
"lint": "tsc",
"lint": "tsc && biome lint",
"start": "dotenvx run -f .env -- node dist/index.js",
"commit": "cz",
"changeset": "changeset",
"version": "changeset version",
"release": "dotenvx run -f .env -- npm run version && git push --follow-tags && node scripts/create-release.js"
"release": "dotenvx run -f .env -- npm run version && git push --follow-tags && node scripts/create-release.js",
"specCheck": "node scripts/check-route-specs.mjs"
},
"repository": {
"type": "git",