Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(domain): move the database schema next to application business rules #66

Merged
merged 8 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
refactor(domain): move the database schema next to business rules
  • Loading branch information
tericcabrel committed May 20, 2024
commit 750451ea73312d421aa8b8c62e2539f2cdfee80b
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
compressionLevel: mixed

defaultSemverRangePrefix: ""

httpRetry: 30

nodeLinker: node-modules
Expand Down
1 change: 0 additions & 1 deletion apps/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
},
"dependencies": {
"@graphql-tools/schema": "10.0.3",
"@snipcode/database": "workspace:*",
"@snipcode/domain": "workspace:*",
"@snipcode/embed": "workspace:*",
"@snipcode/logger": "workspace:*",
Expand Down
1 change: 0 additions & 1 deletion apps/functions/code-embed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"node": ">=16.14.0"
},
"dependencies": {
"@snipcode/database": "workspace:*",
"@snipcode/embed": "workspace:*",
"shiki": "^0.11.1"
},
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"cache:disable": "turbo unlink"
},
"workspaces": [
"packages/database",
"packages/domain",
"packages/embed",
"packages/front",
Expand Down Expand Up @@ -67,5 +66,5 @@
"turbo": "1.13.0",
"typescript": "5.4.3"
},
"packageManager": "[email protected].1"
"packageManager": "[email protected].2"
}
2 changes: 0 additions & 2 deletions packages/database/.env.template

This file was deleted.

8 changes: 0 additions & 8 deletions packages/database/.eslintrc.json

This file was deleted.

4 changes: 0 additions & 4 deletions packages/database/.gitignore

This file was deleted.

101 changes: 0 additions & 101 deletions packages/database/README.md

This file was deleted.

21 changes: 0 additions & 21 deletions packages/database/__tests__/utils/id.test.ts

This file was deleted.

12 changes: 0 additions & 12 deletions packages/database/env.d.ts

This file was deleted.

11 changes: 0 additions & 11 deletions packages/database/index.ts

This file was deleted.

15 changes: 0 additions & 15 deletions packages/database/jest.config.ts

This file was deleted.

31 changes: 0 additions & 31 deletions packages/database/package.json

This file was deleted.

122 changes: 0 additions & 122 deletions packages/database/prisma/schema.test.prisma

This file was deleted.

7 changes: 0 additions & 7 deletions packages/database/src/utils/id.ts

This file was deleted.

15 changes: 0 additions & 15 deletions packages/database/tsconfig.json

This file was deleted.

Loading