Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"eslint": "^10.6.0",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
"typescript-eslint": "^8.62.1"
}
}
2 changes: 1 addition & 1 deletion packages/cwv-stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"devDependencies": {
"@types/node": "^26.0.0"
"@types/node": "^26.1.0"
},
"dependencies": {
"@google-cloud/bigquery": "^8.3.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"type-check": "astro check"
},
"dependencies": {
"astro": "^6.4.8",
"astro": "^7.0.6",
"chart.js": "^4.5.1",
"d3": "^7.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/d3": "^7.4.3",
"eslint-plugin-astro": "^1.7.0"
"eslint-plugin-astro": "^2.1.1"
}
}
4 changes: 1 addition & 3 deletions packages/starter-next-js/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
/* config options here */
}
const nextConfig: NextConfig = {/* config options here */}

export default nextConfig
4 changes: 2 additions & 2 deletions packages/stats-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"autocannon": "^8.0.0",
"core-js-compat": "^3.48.0",
"lighthouse": "^13.4.0",
"puppeteer-core": "^25.1.0",
"puppeteer-core": "^25.3.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"tinybench": "^6.0.2",
Expand All @@ -33,6 +33,6 @@
},
"devDependencies": {
"@types/autocannon": "^7.12.7",
"@types/node": "^26.0.0"
"@types/node": "^26.1.0"
}
}
3 changes: 1 addition & 2 deletions packages/stats-generator/src/sync-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ function extractVersion(
): { version: string; isDevDep: boolean } | null {
const deps = packageJson.dependencies as Record<string, string> | undefined
const devDeps = packageJson.devDependencies as
| Record<string, string>
| undefined
Record<string, string> | undefined

if (deps?.[frameworkPackage]) {
return { version: deps[frameworkPackage], isDevDep: false }
Expand Down
Loading
Loading