Webpack Quick Start (Angular, CRACO)
Quick start guide for Codecov Bundle Analysis and Webpack.
Step 1: Install the Codecov Webpack Plugin
Install the @codecov/webpack-plugin to your project.
npm install @codecov/webpack-plugin --save-devyarn add @codecov/webpack-plugin --devpnpm add @codecov/webpack-plugin --save-devStep 2: Configure the bundler plugin
Import the bundler plugin, and add it to the end of your plugin array found inside your webpack.config.js file.
For NextJS users, please see their docs for configuring Webpack inside the next.config.js file here.
You can find a Codecov upload token on the Configuration page for your repository, under General, or your organization settings page in the Codecov UI. For more information, see the documentation.
Note: You can find your global upload inside your org settings on Codecov
const path = require("path");
const { codecovWebpackPlugin } = require("@codecov/webpack-plugin");
module.exports = {
/* ... */
plugins: [
// Put the Codecov Webpack plugin after all other plugins
codecovWebpackPlugin({
enableBundleAnalysis: process.env.CODECOV_TOKEN !== undefined,
bundleName: "<bundle project name>",
uploadToken: process.env.CODECOV_TOKEN,
}),
],
};Step 3: Commit and push your latest changes
The plugin requires at least one commit to be made to properly upload bundle analysis information to Codecov.
git add -A && git commit -m "Add Codecov bundler plugin" && git pushStep 4: Build the application
When building your application the plugin will automatically upload the stats information to Codecov.
npm run buildyarn run buildpnpm run buildUpdated about 1 month ago