From e30564123fc5ea6c335d33fb9f4292fbf668fde9 Mon Sep 17 00:00:00 2001 From: Ken Snyder Date: Thu, 15 Dec 2022 11:07:27 -0800 Subject: [PATCH] chore: ensure that linting is done prior to a release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c04a1af..d29b7b6 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "lint:tsc": "tsc --noEmit", "lint:node": "tsup src/index.ts --format=esm && node dist/index.js", "audit:fix": "pnpm audit --fix && pnpm install", - "release": "pnpm audit:fix && bumpp", + "release": "pnpm audit:fix && lint && bumpp", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage",