Skip to content

Commit 01de9e5

Browse files
authored
feat: Add Sentry to the bundler plugins (#224)
1 parent 0542128 commit 01de9e5

File tree

74 files changed

+1718
-142
lines changed

Some content is hidden

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

74 files changed

+1718
-142
lines changed

.changeset/green-goats-thank.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@codecov/nextjs-webpack-plugin": minor
3+
"@codecov/bundler-plugin-core": minor
4+
"@codecov/remix-vite-plugin": minor
5+
"@codecov/solidstart-plugin": minor
6+
"@codecov/sveltekit-plugin": minor
7+
"@codecov/webpack-plugin": minor
8+
"@codecov/rollup-plugin": minor
9+
"@codecov/astro-plugin": minor
10+
"@codecov/nuxt-plugin": minor
11+
"@codecov/vite-plugin": minor
12+
"@codecov/bundle-analyzer": minor
13+
---
14+
15+
Add Sentry to the bundler plugins to start collecting issues and telemetry

.changeset/wise-toys-hug.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
"@codecov/nextjs-webpack-plugin": patch
3+
"@codecov/bundler-plugin-core": patch
4+
"@codecov/remix-vite-plugin": patch
5+
"@codecov/solidstart-plugin": patch
6+
"@codecov/sveltekit-plugin": patch
7+
"@codecov/webpack-plugin": patch
8+
"@codecov/rollup-plugin": patch
9+
"@codecov/astro-plugin": patch
10+
"@codecov/nuxt-plugin": patch
11+
"@codecov/vite-plugin": patch
12+
---
13+
14+
Fix issue not using the correct webpack in the nextjs plugin

integration-tests/fixtures/generate-bundle-stats/astro/astro-base.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default defineConfig({
2626
bundleName: "test-astro-v4",
2727
uploadToken: "test-token",
2828
apiUrl: process.env.API_URL,
29+
telemetry: false,
2930
}),
3031
],
3132
});

integration-tests/fixtures/generate-bundle-stats/nextjs/next-base.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default {
1010
uploadToken: "test-token",
1111
apiUrl: process.env.API_URL,
1212
webpack: options.webpack,
13+
telemetry: false,
1314
debug: true,
1415
}),
1516
);

integration-tests/fixtures/generate-bundle-stats/nuxt/nuxt-base.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const config: ReturnType<typeof defineNuxtConfig> = defineNuxtConfig({
1111
bundleName: "test-nuxt-v3",
1212
uploadToken: "test-token",
1313
apiUrl: process.env.API_URL,
14+
telemetry: false,
1415
},
1516
],
1617
],

integration-tests/fixtures/generate-bundle-stats/remix/vite-base.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default defineConfig({
2626
bundleName: "test-remix-v2",
2727
uploadToken: "test-token",
2828
apiUrl: process.env.API_URL,
29+
telemetry: false,
2930
}),
3031
],
3132
});

integration-tests/fixtures/generate-bundle-stats/rollup/rollup-base.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = defineConfig({
2222
bundleName: "test-rollup-v3",
2323
uploadToken: "test-token",
2424
apiUrl: process.env.API_URL,
25+
telemetry: false,
2526
}),
2627
],
2728
});

integration-tests/fixtures/generate-bundle-stats/solidstart/app-base.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export default defineConfig({
2222
bundleName: "test-solidstart-v1",
2323
uploadToken: "test-token",
2424
apiUrl: process.env.API_URL,
25+
telemetry: false,
2526
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2627
}) as any,
2728
],

integration-tests/fixtures/generate-bundle-stats/sveltekit/vite-base.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export default defineConfig({
2222
bundleName: "test-sveltekit-v2",
2323
uploadToken: "test-token",
2424
apiUrl: process.env.API_URL,
25+
telemetry: false,
2526
}),
2627
],
2728
});

integration-tests/fixtures/generate-bundle-stats/vite/vite-base.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export default defineConfig({
2424
bundleName: "test-vite-v5",
2525
uploadToken: "test-token",
2626
apiUrl: process.env.API_URL,
27+
telemetry: false,
2728
}),
2829
],
2930
});

0 commit comments

Comments
 (0)