From f848ffd20f847457b58bc9573f694fa40575a941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Mon, 25 Mar 2024 01:50:43 +0100 Subject: [PATCH] chore: change cq scripts --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 9cac93a..b7b0f61 100644 --- a/package.json +++ b/package.json @@ -15,12 +15,12 @@ "start": "NODE_ENV=production bun ./src/index.tsx", "dev": "bun ./scripts/dev.ts", "comp": "bun ./scripts/build.ts", - "format": "biome format . --changed", - "format:fix": "biome format . --write --changed", + "format": "biome format .", + "format:fix": "biome format . --write", "typecheck": "tsc", - "lint": "biome lint . --changed", - "lint:fix": "biome lint . --apply --changed", - "magic:fix": "biome check . --apply --changed", + "lint": "biome lint .", + "lint:fix": "biome lint . --apply", + "magic:fix": "biome check . --apply", "postinstall": "bunx lefthook install", "release": "bun magic:fix && bun typecheck && bun comp && changelogen --clean --release --push --publish" },