Skip to content

Commit

Permalink
🆙 Upgrade deps & fix configs (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
steeeee0223 authored Nov 27, 2024
2 parents 4ee0af9 + 2c8ec69 commit 0022c52
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 147 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

### 🆕 Core Updates

- `repo` Update `turbo` task dependencies
- `repo`
- Update `turbo` task dependencies
- Upgrade deps: `jiti`, `prisma`, `lucide-react`
- `worxpace`
- Fix: page routing & published page
- Fix: window origin
Expand All @@ -26,6 +28,7 @@
- Mocking data at `@swy/notion/mock`
- `prisma`
- Remove `.env`, use root instead
- Update config
- `validators`
- Move common types here
- `eslint`
Expand Down
2 changes: 1 addition & 1 deletion apps/worxpace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@types/react-dom": "catalog:react18",
"dotenv-cli": "catalog:env",
"eslint": "catalog:",
"jiti": "^2.3.3",
"jiti": "^2.4.0",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"scripts": {
"add:ui": "pnpm dlx shadcn@latest add -c ./packages/ui",
"build": "turbo build",
"build:packages": "turbo build -F \"./packages/*\"",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"coverage": "turbo coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/prisma/prisma/auth.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
generator client {
provider = "prisma-client-js"
output = "../node_modules/.prisma/client/auth"
binaryTargets = ["native", "rhel-openssl-1.0.x"]
binaryTargets = ["native", "rhel-openssl-3.0.x"]
}

datasource db {
Expand Down
2 changes: 1 addition & 1 deletion packages/prisma/prisma/worxpace.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
generator client {
provider = "prisma-client-js"
output = "../node_modules/.prisma/client/worxpace"
binaryTargets = ["native", "rhel-openssl-1.0.x"]
binaryTargets = ["native", "rhel-openssl-3.0.x"]
}

datasource db {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"rootDir": ".",
"types": ["vitest/globals"]
},
"include": ["*.ts", "src", "__test__", "src/hooks/use-sidebar-layout.ts"],
"include": ["*.ts", "src", "__test__"],
"exclude": ["node_modules"]
}
Loading

0 comments on commit 0022c52

Please sign in to comment.