Skip to content

Commit bf4fe56

Browse files
committed
Merge branch 'main' into jorge/feat/sidebar-pages-pagination
2 parents 98bd073 + 5efc7d2 commit bf4fe56

Some content is hidden

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

57 files changed

+1261
-1207
lines changed

.env.example

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ AUTH_SECRET='<YOUR_AUTH_SECRET>'
1616
AUTH_GOOGLE_ID='<AUTH_GOOGLE_ID>'
1717
AUTH_GOOGLE_SECRET='<AUTH_GOOGLE_SECRET>'
1818

19-
# Pre-configured Discord OAuth provider, works out-of-the-box.
20-
# @see https://www.better-auth.com/docs/authentication/discord
21-
AUTH_DISCORD_ID='<AUTH_DISCORD_ID>'
22-
AUTH_DISCORD_SECRET='<AUTH_DISCORD_SECRET>'
23-
2419
# Pre-configured GitHub OAuth provider, works out-of-the-box.
2520
# @see https://www.better-auth.com/docs/authentication/github
2621
AUTH_GITHUB_ID='<AUTH_GITHUB_ID>'

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.14
1+
22.20.0

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"editor.formatOnSave": true,
2525
"editor.insertSpaces": true,
2626
"editor.tabSize": 2,
27+
"files.associations": {
28+
"*.css": "tailwindcss"
29+
},
2730
"gitlens.remotes": [
2831
{
2932
"domain": "www.github.com",

apps/drizzle-studio/biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"extends": "//",
4+
"root": false
5+
}

apps/drizzle-studio/turbo.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"$schema": "https://turborepo.org/schema.json",
3-
"extends": ["//"],
4-
"tasks": {
5-
"dev": {
6-
"persistent": true
7-
}
8-
}
3+
"extends": ["//"],
4+
"tasks": {
5+
"dev": {
6+
"dependsOn": ["^build"],
7+
"interruptible": true,
8+
"persistent": true
9+
}
10+
}
911
}

apps/localtunnel/biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"extends": "//",
4+
"root": false
5+
}

apps/localtunnel/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@
1515
"devDependencies": {
1616
"@acme/db": "workspace:*",
1717
"@acme/tsconfig": "workspace:*",
18-
"@biomejs/biome": "~2.0.6",
1918
"@types/express": "~5.0.3",
2019
"@types/localtunnel": "~2.0.4",
21-
"@types/node": "~22.15.29",
20+
"@types/node": "~22.18.6",
2221
"concurrently": "~9.2.1",
2322
"dotenv-cli": "~8.0.0",
2423
"express": "~5.1.0",
2524
"localtunnel": "~2.0.2",
2625
"tsx": "~4.20.5",
27-
"zod": "~3.25.71"
26+
"zod": "~3.25.76"
2827
}
2928
}

apps/stripe/biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"extends": "//",
4+
"root": false
5+
}

apps/stripe/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"@acme/tsconfig": "workspace:*",
1414
"@t3-oss/env-nextjs": "~0.13.8",
1515
"dotenv-cli": "~8.0.0",
16-
"zod": "~3.25.71"
16+
"zod": "~3.25.76"
1717
}
1818
}

apps/web/biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"extends": "//",
4+
"root": false
5+
}

0 commit comments

Comments
 (0)