diff --git a/bun.lockb b/bun.lockb index fbd567b..1eb9c18 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 90f86e1..34de339 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "prettier": "prettier --write --config ./.prettierrc \"**/*.{js,mjs,ts,mts,jsx,tsx,json}\"", "convention": "bun prettier && eslint --fix \"**/*.{js,mjs,ts,mts,jsx,tsx,html}\"", "prepare": "husky", + "postinstall": "husky install", "test": "vitest run" }, "dependencies": { @@ -53,6 +54,7 @@ }, "lint-staged": { "*.{js,mjs,ts,mts,jsx,tsx,json}": "prettier --write", - "*.{js,mjs,ts,mts,jsx,tsx,html}": "eslint --fix" + "*.{js,mjs,ts,mts,jsx,tsx,html}": "eslint --fix", + "*.{test,spec}.*": "vitest run" } }