Registry
Explore community-led codemods to migrate, optimize, and transform your codebase.
Ready to contribute?
Build your own codemod and share it with the community.
Explore community-led codemods to migrate, optimize, and transform your codebase.
Build your own codemod and share it with the community.
Install and configure the waitlist plugin for MakerKit
npx codemod @makerkit/next-supabase-waitlist
This is one example from the codemod's test cases. The codemod may handle many more cases.
Build your own codemod and share it with the community.
1 import { SignUpMethodsContainer } from '@kit/auth/sign-up';
2 import { Trans } from '@kit/ui/trans';
3
4 function CustomSignUpPage() {
5 return (
6 <div>
7 <Trans i18nKey={'auth:signUpHeading'} />
8 <SignUpMethodsContainer
9 providers={['google', 'github']}
10 />
11 </div>
12 );
13 }
14
15 export default CustomSignUpPage;
16