From e36e9b0011301fb45a3dcef1c4e17d283db8ce90 Mon Sep 17 00:00:00 2001 From: Noel Forte Date: Thu, 31 Oct 2024 16:04:46 -0400 Subject: [PATCH] clean up scripts and subpaths in package.json --- package.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 3801e5a..0261c68 100644 --- a/package.json +++ b/package.json @@ -8,17 +8,15 @@ }, "scripts": { "test": "vitest --run", - "check": "pnpm --color run '/type-check|lint/'", + "check": "pnpm --color run '/ts-check|lint/'", "lint": "eslint '.'", - "type-check": "tsc", + "ts-check": "tsc --noEmit", + "build": "tsup", "ci:version": "changeset version && pnpm install --no-frozen-lockfile", "ci:publish": "changeset publish", "ci:generate-changesets": "node ./scripts/generate-changesets.js", "format": "pnpm dlx prettier --config ./package.json --write ." }, - "imports": { - "#localtypes/*": "./types/*" - }, "exports": { ".": { "import": "./dist/index.js",