Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ startsWith(matrix.example, 'astro') && '22' || '20' }}

- name: Install pnpm
uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ startsWith(matrix.example, 'astro') && '22' || '20' }}

- name: Install pnpm
uses: pnpm/action-setup@v4
Expand Down
6 changes: 3 additions & 3 deletions examples/astro-5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/node": "^9.0.0",
"@astrojs/react": "^4.1.1",
"@astrojs/node": "^10.1.4",
"@astrojs/react": "^5.0.7",
"@codecov/astro-plugin": "workspace:*",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"astro": "^5.0.9",
"astro": "^6.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/astro/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
output: "hybrid",
output: "static",
adapter: node({
mode: "standalone",
}),
Expand Down
8 changes: 4 additions & 4 deletions examples/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^8.3.4",
"@astrojs/react": "^3.6.3",
"@astrojs/node": "^10.1.4",
"@astrojs/react": "^5.0.7",
"@codecov/astro-plugin": "workspace:*",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.18",
"astro": "^6.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
}
}
2 changes: 1 addition & 1 deletion examples/bundle-analyzer-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"npm-run-all": "^4.1.5",
"rollup": "^4.22.4",
"rollup": "^4.60.1",
"serve": "^14.2.1"
},
"volta": {
Expand Down
6 changes: 3 additions & 3 deletions examples/next-js-15/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"lint": "next lint"
},
"dependencies": {
"next": "15.2.6",
"next": "15.5.21",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@codecov/nextjs-webpack-plugin": "workspace:^",
"@types/node": "^20",
"@types/node": "^20.19.43",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5"
"typescript": "^5.7.3"
}
}
6 changes: 3 additions & 3 deletions examples/next-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
"lint": "next lint"
},
"dependencies": {
"next": "14.2.25",
"next": "15.5.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@codecov/nextjs-webpack-plugin": "workspace:^",
"@types/node": "^20.12.12",
"@types/node": "^20.19.43",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.25",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
"typescript": "^5.7.3"
},
"volta": {
"extends": "../../package.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "nuxt preview"
},
"dependencies": {
"nuxt": "^3.16.0",
"nuxt": "^3.21.7",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/oidc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
"vite": "6.3.5"
"rollup": "^4.60.1",
"typescript": "^5.7.3",
"vite": "6.4.3"
},
"volta": {
"extends": "../../package.json"
Expand Down
12 changes: 6 additions & 6 deletions examples/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/node": "^2.17.2",
"@remix-run/react": "^2.17.2",
"@remix-run/serve": "^2.17.2",
"@remix-run/node": "^2.17.5",
"@remix-run/react": "^2.17.5",
"@remix-run/serve": "^2.17.5",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@codecov/remix-vite-plugin": "workspace:^",
"@remix-run/dev": "^2.17.2",
"@remix-run/dev": "^2.17.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
Expand All @@ -34,8 +34,8 @@
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.1.6",
"vite": "6.3.5",
"typescript": "^5.7.3",
"vite": "6.4.3",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/rollup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"npm-run-all": "^4.1.5",
"rollup": "^4.22.4",
"rollup": "^4.60.1",
"serve": "^14.2.1"
},
"volta": {
Expand Down
8 changes: 4 additions & 4 deletions examples/solidstart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"@codecov/solidstart-plugin": "workspace:^",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.1",
"@solidjs/start": "^1.0.10",
"solid-js": "^1.8.18",
"vinxi": "^0.4.3",
"vite-plugin-solid": "^2.11.0"
"@solidjs/start": "^1.3.2",
"solid-js": "^1.9.9",
"vinxi": "^0.5.11",
"vite-plugin-solid": "^2.11.14"
},
"engines": {
"node": ">=18"
Expand Down
10 changes: 5 additions & 5 deletions examples/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.12.1",
"@sveltejs/vite-plugin-svelte": "^5.0.2",
"svelte": "^5.14.1",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"svelte": "^5.56.8",
"svelte-check": "^4.1.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "6.3.5"
"typescript": "^5.7.3",
"vite": "6.4.3"
},
"type": "module"
}
6 changes: 3 additions & 3 deletions examples/tokenless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
"vite": "6.3.5"
"rollup": "^4.60.1",
"typescript": "^5.7.3",
"vite": "6.4.3"
},
"volta": {
"extends": "../../package.json"
Expand Down
6 changes: 3 additions & 3 deletions examples/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
"vite": "6.3.5"
"rollup": "^4.60.1",
"typescript": "^5.7.3",
"vite": "6.4.3"
},
"volta": {
"extends": "../../package.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "webpack --config webpack.config.js"
},
"dependencies": {
"lodash": "^4.17.21"
"lodash": "^4.18.0"
},
"devDependencies": {
"@codecov/webpack-plugin": "workspace:^",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
// Bun Snapshot v1, https://goo.gl/fbAQLP

exports[`Generating astro stats 4 {"format":"es","expected":"esm"} matches the snapshot 1`] = `
{
Expand All @@ -7,7 +7,7 @@ exports[`Generating astro stats 4 {"format":"es","expected":"esm"} matches the s
"bundleName": StringContaining "test-astro-v4-client-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -28,7 +28,7 @@ exports[`Generating astro stats 4 {"format":"es","expected":"esm"} matches the s
"bundleName": StringContaining "test-astro-v4-server-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -49,7 +49,7 @@ exports[`Generating astro stats 4 {"format":"esm","expected":"esm"} matches the
"bundleName": StringContaining "test-astro-v4-client-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -70,7 +70,7 @@ exports[`Generating astro stats 4 {"format":"esm","expected":"esm"} matches the
"bundleName": StringContaining "test-astro-v4-server-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -91,7 +91,7 @@ exports[`Generating astro stats 4 {"format":"module","expected":"esm"} matches t
"bundleName": StringContaining "test-astro-v4-client-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -112,7 +112,7 @@ exports[`Generating astro stats 4 {"format":"module","expected":"esm"} matches t
"bundleName": StringContaining "test-astro-v4-server-esm",
"bundler": {
"name": "rollup",
"version": "4.22.4",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -133,7 +133,7 @@ exports[`Generating astro stats 5 {"format":"es","expected":"esm"} matches the s
"bundleName": StringContaining "test-astro-v5-client-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -154,7 +154,7 @@ exports[`Generating astro stats 5 {"format":"es","expected":"esm"} matches the s
"bundleName": StringContaining "test-astro-v5-server-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -175,7 +175,7 @@ exports[`Generating astro stats 5 {"format":"esm","expected":"esm"} matches the
"bundleName": StringContaining "test-astro-v5-client-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -196,7 +196,7 @@ exports[`Generating astro stats 5 {"format":"esm","expected":"esm"} matches the
"bundleName": StringContaining "test-astro-v5-server-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -217,7 +217,7 @@ exports[`Generating astro stats 5 {"format":"module","expected":"esm"} matches t
"bundleName": StringContaining "test-astro-v5-client-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand All @@ -238,7 +238,7 @@ exports[`Generating astro stats 5 {"format":"module","expected":"esm"} matches t
"bundleName": StringContaining "test-astro-v5-server-esm",
"bundler": {
"name": "rollup",
"version": "4.40.1",
"version": "4.60.1",
},
"chunks": ExpectArrayContaining {},
"duration": Any<Number>,
Expand Down
Loading
Loading