From f3f5707d2c1609def1722454e15927d8303e054d Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 30 Nov 2025 19:50:14 -0500 Subject: [PATCH] Update test scripts and fix tsconfig path typo Added type checking to the main test script and renamed the typecheck script for consistency. Fixed a typo in the tsconfig.json paths from 'contribrkit' to 'contribkit'. --- package.json | 4 ++-- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0132f84..222f007 100644 --- a/package.json +++ b/package.json @@ -37,11 +37,11 @@ "build": "unbuild", "stub": "unbuild --stub", "dev": "esno src/cli.ts", - "test": "npm-run-all test:unit test:report test:lint", + "test": "npm-run-all test:unit test:report test:lint test:typecheck", "test:unit": "jest --coverage", "test:report": "jest --reporters=jest-junit", "test:lint": "eslint .", - "typecheck": "tsc --noEmit", + "test:typecheck": "tsc --noEmit", "prepublishOnly": "nr build", "release": "bumpp && pnpm publish" }, diff --git a/tsconfig.json b/tsconfig.json index 582011c..44c2f05 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "module": "esnext", "moduleResolution": "node", "paths": { - "contribrkit": [ + "contribkit": [ "./src/index.ts" ] },