Skip to content

Commit 45dde7a

Browse files
committed
refactor: move packages/* -> apps/, simplify package graph, rename alias, etc
1 parent 629df58 commit 45dde7a

File tree

179 files changed

+544
-807
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+544
-807
lines changed

CLAUDE.md

Lines changed: 6 additions & 6 deletions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
export { api } from "./src/convex/_generated/api";
2-
export type { Doc, Id } from "./src/convex/_generated/dataModel";
1+
export { api } from "./src/convex/_generated/api.ts";
2+
export type { Doc, Id } from "./src/convex/_generated/dataModel.ts";
33

4-
import type { DataModel } from "./src/convex/_generated/dataModel";
4+
import type { DataModel } from "./src/convex/_generated/dataModel.ts";
55
export type Task = DataModel["tasks"]["document"];
66

77
export type Query<T> =
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@packages/convex",
2+
"name": "@apps/convex",
33
"module": "index.ts",
44
"type": "module",
55
"private": true,
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Google from "@auth/core/providers/google";
22
import { Password } from "@convex-dev/auth/providers/Password";
33
import { convexAuth } from "@convex-dev/auth/server";
4-
import { ResendOTP } from "./ResendOTP";
5-
import { ResendOTPPasswordReset } from "./ResendOTPPasswordReset";
4+
import { ResendOTP } from "./ResendOTP.ts";
5+
import { ResendOTPPasswordReset } from "./ResendOTPPasswordReset.ts";
66

77
export const { auth, signIn, signOut, store, isAuthenticated } = convexAuth({
88
providers: [

0 commit comments

Comments
 (0)