Skip to content

Commit 47f76d1

Browse files
authored
Merge pull request #22 from llbbl/deps/update-packages
chore(deps): update patch dependencies
2 parents 91fc5ce + 2b0cd1f commit 47f76d1

6 files changed

Lines changed: 576 additions & 1179 deletions

File tree

‎biome.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

‎global.d.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module '*.css';

‎lib/logger.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ export const reportError = (error: Error, context?: LogMetadata) => {
165165
const errorMeta = {
166166
context,
167167
timestamp: new Date().toISOString(),
168-
userAgent: typeof window !== 'undefined' ? window.navigator?.userAgent : 'server',
169-
url: typeof window !== 'undefined' ? window.location?.href : 'server',
168+
userAgent: typeof window === 'undefined' ? 'server' : window.navigator?.userAgent,
169+
url: typeof window === 'undefined' ? 'server' : window.location?.href,
170170
};
171171

172172
log.appError(error, errorMeta);

‎package.json‎

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,29 @@
2020
"analyze": "ANALYZE=true next build"
2121
},
2222
"dependencies": {
23-
"logan-logger": "^1.1.14",
23+
"logan-logger": "^1.1.16",
2424
"next": "16.1.6",
25-
"react": "^19.2.4",
26-
"react-dom": "^19.2.4"
25+
"react": "^19.2.5",
26+
"react-dom": "^19.2.5"
2727
},
2828
"devDependencies": {
29-
"@biomejs/biome": "^2.4.4",
29+
"@biomejs/biome": "^2.4.12",
3030
"@next/bundle-analyzer": "^16.1.6",
31-
"@tailwindcss/postcss": "^4.2.1",
31+
"@tailwindcss/postcss": "^4.2.4",
3232
"@testing-library/jest-dom": "^6.9.1",
3333
"@testing-library/react": "^16.3.2",
3434
"@types/node": "^25.3.0",
3535
"@types/react": "^19.2.14",
3636
"@types/react-dom": "^19.2.3",
37-
"@vitejs/plugin-react": "^5.1.4",
38-
"@vitest/ui": "^4.0.18",
39-
"jsdom": "^28.1.0",
40-
"postcss": "^8.5.6",
37+
"@vitejs/plugin-react": "^6.0.1",
38+
"@vitest/ui": "^4.1.5",
39+
"jsdom": "^29.0.2",
40+
"postcss": "^8.5.10",
4141
"sharp": "^0.34.5",
42-
"tailwindcss": "^4.2.1",
43-
"typescript": "^5.9.3",
44-
"vitest": "^4.0.18"
42+
"tailwindcss": "^4.2.4",
43+
"typescript": "^6.0.3",
44+
"vite": "^8.0.10",
45+
"vitest": "^4.1.5"
4546
},
4647
"pnpm": {
4748
"overrides": {

0 commit comments

Comments
 (0)