One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add husky and commitlint

authored by

Evan Huang and committed by
GitHub
66d5d181 a1f82471

+5 -1
+5 -1
package.json
··· 7 7 "dev": "next dev", 8 8 "build": "bun run generate:locales && next build", 9 9 "start": "next start", 10 + "prepare": "husky", 10 11 "generate:locales": "bun lib/gen-locales.mjs", 11 12 "generate:oauth-metadata": "bun lib/gen-oauth-metadata.mjs" 12 13 }, ··· 46 47 "postcss": "8.5.8", 47 48 "tailwindcss": "4.2.2", 48 49 "turbo": "2.9.5", 49 - "typescript": "6.0.2" 50 + "typescript": "6.0.2", 51 + "husky": "^9.0.0", 52 + "@commitlint/cli": "^19.0.0", 53 + "@commitlint/config-conventional": "^19.0.0" 50 54 } 51 55 }