docs: update root and @repo/auth readme

This commit is contained in:
afiqzudinhadi 2025-06-24 10:48:12 +08:00
parent eb1dec1d40
commit 2a199f3679
2 changed files with 3 additions and 0 deletions

View file

@ -21,6 +21,7 @@ This Turborepo includes the following packages and apps:
- `@repo/ui`: shared UI components for frontend use. - `@repo/ui`: shared UI components for frontend use.
- A dummy React UI library (which contains `<CounterButton>` and `<Link>` components) - A dummy React UI library (which contains `<CounterButton>` and `<Link>` components)
- And shadcn/ui components (which contains `<Button>` and `<Card>` components) - And shadcn/ui components (which contains `<Button>` and `<Card>` components)
- `@repo/auth`: shared auth helpers using [Clerk](https://clerk.com/) as auth provider
Each package and app is 100% [TypeScript](https://www.typescriptlang.org/). Each package and app is 100% [TypeScript](https://www.typescriptlang.org/).

View file

@ -1,3 +1,5 @@
# @repo/auth # @repo/auth
Helper tools package for Clerk authentication. As of now, this helper package is not being used anywhere in the repo. Helper tools package for Clerk authentication. As of now, this helper package is not being used anywhere in the repo.
Due to Clerk's implementations for different frameworks, each app (Next.js, Remix, etc.) have its own Clerk setup. This package is intended to provide shared utilities and types that can be used across these implementations.