Details for the Codecov Rollup plugin.
// rollup.config.jsimport { defineConfig } from "rollup";import { codecovRollupPlugin } from "@codecov/rollup-plugin";export default defineConfig({ plugins: [ // Put the Codecov rollup plugin after all other plugins codecovRollupPlugin({ enableBundleAnalysis: true, bundleName: "example-rollup-bundle", gitService: "github", }), ],}); Copy
// rollup.config.jsimport { defineConfig } from "rollup";import { codecovRollupPlugin } from "@codecov/rollup-plugin";export default defineConfig({ plugins: [ // Put the Codecov rollup plugin after all other plugins codecovRollupPlugin({ enableBundleAnalysis: true, bundleName: "example-rollup-bundle", gitService: "github", }), ],});
See Options for more details.
Details for the Codecov Rollup plugin.
Example