Skip to content

Commit

Permalink
chore: Convert to monorepo (#3788)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ThangHuuVu authored Feb 4, 2022
1 parent f7fc562 commit a72f1b6
Show file tree
Hide file tree
Showing 162 changed files with 9,013 additions and 22,646 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
10 changes: 10 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.6.4/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
48 changes: 25 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

yarn.lock

# Dependencies
node_modules
Expand All @@ -24,29 +23,30 @@ node_modules
# Generated files
.docusaurus
.cache-loader
/providers
/src/providers/oauth-types.ts
/client
/css
/lib
/core
/jwt
/react
/adapters.d.ts
/index.d.ts
/index.js
/next
/middleware.d.ts
/middleware.js
packages/next-auth/providers
packages/next-auth/src/providers/oauth-types.ts
packages/next-auth/client
packages/next-auth/css
packages/next-auth/lib
packages/next-auth/core
packages/next-auth/jwt
packages/next-auth/react
packages/next-auth/adapters.d.ts
packages/next-auth/index.d.ts
packages/next-auth/index.js
packages/next-auth/next
packages/next-auth/middleware.d.ts
packages/next-auth/middleware.js

# Development app
app/src/css
app/package-lock.json
app/yarn.lock
app/prisma/migrations
app/prisma/dev.db*
app/dist
app/next-auth
# Development dev-app
packages/dev-app/src/css
packages/dev-app/css
packages/dev-app/package-lock.json
packages/dev-app/yarn.lock
packages/dev-app/prisma/migrations
packages/dev-app/prisma/dev.db*
packages/dev-app/dist
packages/dev-app/next-auth

# VS
/.vs/slnx.sqlite-journal
Expand All @@ -66,3 +66,5 @@ app/next-auth

# Tests
/coverage

.turbo
File renamed without changes.
Loading

0 comments on commit a72f1b6

Please sign in to comment.