Skip to content

Commit a0b1420

Browse files
committed
chore: update dependencies, Biome config, and add Bun lockfile.
1 parent e6a5f7b commit a0b1420

20 files changed

Lines changed: 6098 additions & 642 deletions

File tree

apps/relay/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
},
2020
"devDependencies": {
2121
"@evolu/tsconfig": "workspace:*",
22-
"@types/node": "^22.19.3",
23-
"typescript": "^5.9.2"
22+
"@types/node": "^24.10.3",
23+
"typescript": "^5.9.3"
2424
},
2525
"engines": {
26-
"node": ">=22.0.0"
26+
"node": ">=24.0.0"
2727
}
2828
}

apps/web/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@mdx-js/react": "^3.1.0",
2323
"@next/mdx": "^16.1.1",
2424
"@sindresorhus/slugify": "^3.0.0",
25-
"@tabler/icons-react": "^3.36.0",
25+
"@tabler/icons-react": "^3.35.0",
2626
"@tailwindcss/forms": "^0.5.11",
2727
"@tailwindcss/postcss": "^4.1.18",
2828
"@tailwindcss/typography": "^0.5.16",
@@ -35,27 +35,27 @@
3535
"motion": "^12.23.26",
3636
"next": "^16.1.1",
3737
"next-themes": "^0.4.6",
38-
"react": "catalog:react19",
39-
"react-dom": "catalog:react19",
38+
"react": "^19.1.0",
39+
"react-dom": "^19.1.0",
4040
"react-highlight-words": "^0.21.0",
4141
"remark": "^15.0.1",
4242
"remark-gfm": "^4.0.1",
4343
"remark-mdx": "^3.1.0",
4444
"rss": "^1.2.2",
45-
"shiki": "^3.20.0",
45+
"shiki": "^3.19.0",
4646
"simple-functional-loader": "^1.2.1",
4747
"tailwindcss": "^4.1.18",
48-
"typescript": "^5.9.2",
48+
"typescript": "^5.9.3",
4949
"unist-util-filter": "^5.0.1",
5050
"unist-util-visit": "^5.0.0",
51-
"zustand": "^5.0.7"
51+
"zustand": "^5.0.9"
5252
},
5353
"devDependencies": {
5454
"@evolu/tsconfig": "workspace:*",
5555
"@types/mdx": "^2.0.13",
56-
"@types/node": "^22.19.3",
57-
"@types/react": "catalog:react19",
58-
"@types/react-dom": "catalog:react19",
56+
"@types/node": "^24.10.3",
57+
"@types/react": "^19.1.17",
58+
"@types/react-dom": "^19.1.11",
5959
"@types/react-highlight-words": "^0.20.1",
6060
"@types/rss": "^0.0.32",
6161
"cross-env": "^10.0.0",

biome.json

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
3-
"vcs": {
4-
"enabled": true,
5-
"clientKind": "git",
6-
"useIgnoreFile": true
7-
},
8-
"files": {
9-
"ignoreUnknown": false,
10-
"includes": ["**", "!!apps/web", "!!examples"]
11-
},
12-
"formatter": {
13-
"enabled": false,
14-
"indentStyle": "tab"
15-
},
16-
"linter": {
17-
"enabled": true,
18-
"rules": {
19-
"recommended": false,
20-
"suspicious": {
21-
"noShadowRestrictedNames": "off",
22-
"noExplicitAny": "off",
23-
"noImplicitAnyLet": "off",
24-
"useIterableCallbackReturn": "off"
25-
},
26-
"correctness": {
27-
"noConstantCondition": "off",
28-
"noUnusedFunctionParameters": "off"
29-
},
30-
"style": {
31-
"useImportType": "off"
32-
},
33-
"nursery": {
34-
"noImportCycles": {
35-
"level": "error",
36-
"options": {
37-
"ignoreTypes": true
38-
}
39-
}
40-
}
41-
}
42-
},
43-
"javascript": {
44-
"formatter": {
45-
"quoteStyle": "double"
46-
}
47-
},
48-
"css": {
49-
"parser": {
50-
"tailwindDirectives": true
51-
}
52-
},
53-
"assist": {
54-
"enabled": false,
55-
"actions": {
56-
"source": {
57-
"organizeImports": "on"
58-
}
59-
}
60-
}
2+
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"useIgnoreFile": true
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"includes": ["**", "!!apps/web", "!!examples"]
11+
},
12+
"formatter": {
13+
"enabled": false,
14+
"indentStyle": "tab"
15+
},
16+
"linter": {
17+
"enabled": true,
18+
"rules": {
19+
"recommended": false,
20+
"suspicious": {
21+
"noShadowRestrictedNames": "off",
22+
"noExplicitAny": "off",
23+
"noImplicitAnyLet": "off",
24+
"useIterableCallbackReturn": "off"
25+
},
26+
"correctness": {
27+
"noConstantCondition": "off",
28+
"noUnusedFunctionParameters": "off"
29+
},
30+
"style": {
31+
"useImportType": "off"
32+
},
33+
"nursery": {
34+
"noImportCycles": {
35+
"level": "error",
36+
"options": {
37+
"ignoreTypes": true
38+
}
39+
}
40+
}
41+
}
42+
},
43+
"javascript": {
44+
"formatter": {
45+
"quoteStyle": "double"
46+
}
47+
},
48+
"css": {
49+
"parser": {
50+
"tailwindDirectives": true
51+
}
52+
},
53+
"assist": {
54+
"enabled": false,
55+
"actions": {
56+
"source": {
57+
"organizeImports": "on"
58+
}
59+
}
60+
}
6161
}

0 commit comments

Comments
 (0)