Skip to content

Commit a72f1b6

Browse files
authored
chore: Convert to monorepo (#3788)
* chore: convert to monorepo * Remove eslint, typescript, semantic-release * Add yarn.lock * Add turbo * Run test command * Move to src * Add a seperate tsconfig file * Update .gitignore * Update commands to yarn * Replace semantic-release with changesets * Update changesets usage * Fix commands: dev, setup, clean * Add back changes from main * Fixed HMR * Update .gitignore
1 parent f7fc562 commit a72f1b6

File tree

162 files changed

+9013
-22646
lines changed

Some content is hidden

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

162 files changed

+9013
-22646
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"linked": [],
6+
"access": "restricted",
7+
"baseBranch": "main",
8+
"updateInternalDependencies": "patch",
9+
"ignore": []
10+
}

.gitignore

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ npm-debug.log*
1111
yarn-debug.log*
1212
yarn-error.log*
1313

14-
yarn.lock
1514

1615
# Dependencies
1716
node_modules
@@ -24,29 +23,30 @@ node_modules
2423
# Generated files
2524
.docusaurus
2625
.cache-loader
27-
/providers
28-
/src/providers/oauth-types.ts
29-
/client
30-
/css
31-
/lib
32-
/core
33-
/jwt
34-
/react
35-
/adapters.d.ts
36-
/index.d.ts
37-
/index.js
38-
/next
39-
/middleware.d.ts
40-
/middleware.js
26+
packages/next-auth/providers
27+
packages/next-auth/src/providers/oauth-types.ts
28+
packages/next-auth/client
29+
packages/next-auth/css
30+
packages/next-auth/lib
31+
packages/next-auth/core
32+
packages/next-auth/jwt
33+
packages/next-auth/react
34+
packages/next-auth/adapters.d.ts
35+
packages/next-auth/index.d.ts
36+
packages/next-auth/index.js
37+
packages/next-auth/next
38+
packages/next-auth/middleware.d.ts
39+
packages/next-auth/middleware.js
4140

42-
# Development app
43-
app/src/css
44-
app/package-lock.json
45-
app/yarn.lock
46-
app/prisma/migrations
47-
app/prisma/dev.db*
48-
app/dist
49-
app/next-auth
41+
# Development dev-app
42+
packages/dev-app/src/css
43+
packages/dev-app/css
44+
packages/dev-app/package-lock.json
45+
packages/dev-app/yarn.lock
46+
packages/dev-app/prisma/migrations
47+
packages/dev-app/prisma/dev.db*
48+
packages/dev-app/dist
49+
packages/dev-app/next-auth
5050

5151
# VS
5252
/.vs/slnx.sqlite-journal
@@ -66,3 +66,5 @@ app/next-auth
6666

6767
# Tests
6868
/coverage
69+
70+
.turbo

app/.nvmrc renamed to .nvmrc

File renamed without changes.

0 commit comments

Comments
 (0)