diff --git a/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html b/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html index e4a6ad5c..58b7dad3 100644 --- a/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html +++ b/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html @@ -9,4 +9,4 @@ (dry-runned or uploaded).

Example

const buildDirs = ['/path/to/build/directory', '/path/to/another/build']; // absolute or relative paths
const coreOpts = {
dryRun: true,
uploadToken: 'your-upload-token',
retryCount: 3,
apiUrl: 'https://api.codecov.io',
bundleName: 'my-bundle', // bundle identifier in Codecov
enableBundleAnalysis: true,
debug: true,
};
const bundleAnalyzerOpts = {
beforeReportUpload: async (original) => original,
ignorePatterns: ["*.map"],
normalizeAssetsPattern: "[name]-[hash].js",
};

createAndUploadReport(buildDirs, coreOpts, bundleAnalyzerOpts)
.then(() => console.log('Report successfully generated and uploaded.'))
.catch((error) => console.error('Failed to generate or upload report:', error));
-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_bundler_plugin_core.handleErrors.html b/functions/_codecov_bundler_plugin_core.handleErrors.html index 29c85733..39fdc3dd 100644 --- a/functions/_codecov_bundler_plugin_core.handleErrors.html +++ b/functions/_codecov_bundler_plugin_core.handleErrors.html @@ -1,4 +1,4 @@ handleErrors | Codecov JavaScript Bundler Plugins
  • This function logs the errors to the console, and will return shouldExit if there are errors that we should exit the build process for.

    Parameters

    • options: NormalizedOptionsFailure

      The normalized options that failed validation.

      -

    Returns {
        shouldExit: boolean;
    }

    • shouldExit: boolean

Generated using TypeDoc

\ No newline at end of file +

Returns {
    shouldExit: boolean;
}

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_bundler_plugin_core.normalizeOptions.html b/functions/_codecov_bundler_plugin_core.normalizeOptions.html index 9887f591..0d680e4a 100644 --- a/functions/_codecov_bundler_plugin_core.normalizeOptions.html +++ b/functions/_codecov_bundler_plugin_core.normalizeOptions.html @@ -1,4 +1,4 @@ normalizeOptions | Codecov JavaScript Bundler Plugins
  • This function is used to normalize the options provided by the user. Validating the options passed by the user, and providing default values for a given set of options if none were provided.

    -

    Parameters

    Returns NormalizedOptionsResult

Generated using TypeDoc

\ No newline at end of file +

Parameters

Returns NormalizedOptionsResult

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_nextjs_webpack_plugin.codecovNextJSWebpackPlugin.html b/functions/_codecov_nextjs_webpack_plugin.codecovNextJSWebpackPlugin.html index ec6d9c22..04f319f4 100644 --- a/functions/_codecov_nextjs_webpack_plugin.codecovNextJSWebpackPlugin.html +++ b/functions/_codecov_nextjs_webpack_plugin.codecovNextJSWebpackPlugin.html @@ -2,4 +2,4 @@

Parameters

Returns WebpackPluginInstance

Example

// next.config.mjs
import { codecovNextJSWebpackPlugin } from "@codecov/nextjs-webpack-plugin";

export default {
webpack: (config, options) => {
config.plugins.push(
codecovNextJSWebpackPlugin({
enableBundleAnalysis: true,
bundleName: "example-nextjs-webpack-bundle",
uploadToken: process.env.CODECOV_TOKEN,
webpack: options.webpack,
}),
);

return config;
},
};

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_nuxt_plugin.default.html b/functions/_codecov_nuxt_plugin.default.html index 79766bc8..6e3f3cf0 100644 --- a/functions/_codecov_nuxt_plugin.default.html +++ b/functions/_codecov_nuxt_plugin.default.html @@ -2,4 +2,4 @@

Parameters

Returns _ModuleSetupReturn

Example

// nuxt.config.ts
import { defineNuxtConfig } from "nuxt/config";

export default defineNuxtConfig({
devtools: { enabled: true },
w
builder: "vite",
// Ensure that the plugin is added to the modules array
modules: [
[
"@codecov/nuxt-plugin",
{
enableBundleAnalysis: true,
bundleName: "nuxt-bundle-analysis",
gitService: "github",
},
],
],
});

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_remix_vite_plugin.codecovRemixVitePlugin.html b/functions/_codecov_remix_vite_plugin.codecovRemixVitePlugin.html index 25542f87..baee0fc7 100644 --- a/functions/_codecov_remix_vite_plugin.codecovRemixVitePlugin.html +++ b/functions/_codecov_remix_vite_plugin.codecovRemixVitePlugin.html @@ -2,4 +2,4 @@

Parameters

Returns Plugin<any>[]

Example

// vite.config.ts
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
import { codecovRemixVitePlugin } from "@codecov/remix-vite-plugin";

export default defineConfig({
plugins: [
remix(),
tsconfigPaths()
// Put the Codecov SvelteKit plugin after all other plugins
codecovRemixVitePlugin({
enableBundleAnalysis: true,
bundleName: "example-remix-bundle",
gitService: "github",
}),
],
});

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_rollup_plugin.codecovRollupPlugin.html b/functions/_codecov_rollup_plugin.codecovRollupPlugin.html index 616f3622..2bdcc159 100644 --- a/functions/_codecov_rollup_plugin.codecovRollupPlugin.html +++ b/functions/_codecov_rollup_plugin.codecovRollupPlugin.html @@ -3,4 +3,4 @@ details.

Returns Plugin<any>[]

Example

// rollup.config.js
import { 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",
}),
],
});
-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_solidstart_plugin.codecovSolidStartPlugin.html b/functions/_codecov_solidstart_plugin.codecovSolidStartPlugin.html index e95d28a0..cd0be500 100644 --- a/functions/_codecov_solidstart_plugin.codecovSolidStartPlugin.html +++ b/functions/_codecov_solidstart_plugin.codecovSolidStartPlugin.html @@ -2,4 +2,4 @@

Parameters

Returns Plugin<any>[]

Example

// app.config.ts
import { defineConfig } from "@solidjs/start/config";
import solidPlugin from "vite-plugin-solid";
import { codecovSolidStartPlugin } from "@codecov/solidstart-plugin";

export default defineConfig({
vite: {
plugins: [
// Put the Codecov SolidStart plugin after all other plugins
solidPlugin(),
codecovSolidStartPlugin({
enableBundleAnalysis: true,
bundleName: "example-solidstart-bundle",
gitService: "github",
}),
],
},
});

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_sveltekit_plugin.codecovSvelteKitPlugin.html b/functions/_codecov_sveltekit_plugin.codecovSvelteKitPlugin.html index ed89128e..3629f196 100644 --- a/functions/_codecov_sveltekit_plugin.codecovSvelteKitPlugin.html +++ b/functions/_codecov_sveltekit_plugin.codecovSvelteKitPlugin.html @@ -2,4 +2,4 @@

Parameters

Returns Plugin<any>[]

Example

// vite.config.ts
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import { codecovSvelteKitPlugin } from "@codecov/sveltekit-plugin";

export default defineConfig({
plugins: [
sveltekit(),
// Put the Codecov SvelteKit plugin after all other plugins
codecovSvelteKitPlugin({
enableBundleAnalysis: true,
bundleName: "example-sveltekit-bundle",
gitService: "github",
}),
],
});

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_vite_plugin.codecovVitePlugin.html b/functions/_codecov_vite_plugin.codecovVitePlugin.html index a695e978..4758cf96 100644 --- a/functions/_codecov_vite_plugin.codecovVitePlugin.html +++ b/functions/_codecov_vite_plugin.codecovVitePlugin.html @@ -2,4 +2,4 @@

Parameters

Returns Plugin<any>[]

Example

// vite.config.js
import { defineConfig } from "vite";
import { codecovVitePlugin } from "@codecov/vite-plugin";

export default defineConfig({
plugins: [
// Put the Codecov vite plugin after all other plugins
codecovVitePlugin({
enableBundleAnalysis: true,
bundleName: "example-vite-bundle",
gitService: "github",
}),
],
});

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/functions/_codecov_webpack_plugin.codecovWebpackPlugin.html b/functions/_codecov_webpack_plugin.codecovWebpackPlugin.html index 75be1f4b..bd2dd57c 100644 --- a/functions/_codecov_webpack_plugin.codecovWebpackPlugin.html +++ b/functions/_codecov_webpack_plugin.codecovWebpackPlugin.html @@ -2,4 +2,4 @@

Parameters

Returns WebpackPluginInstance

Example

// webpack.config.js
const path = require("path");
const { codecovWebpackPlugin } = require("@codecov/webpack-plugin");

module.exports = {
entry: "./src/index.js",
mode: "production",
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist"),
},
plugins: [
// Put the Codecov vite plugin after all other plugins
codecovWebpackPlugin({
enableBundleAnalysis: true,
bundleName: "example-webpack-bundle",
gitService: "github",
}),
],
};

See

Options for list of options.

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/_codecov_bundle_analyzer.options.BundleAnalyzerOptions.html b/interfaces/_codecov_bundle_analyzer.options.BundleAnalyzerOptions.html index b200a561..1f0c1f1c 100644 --- a/interfaces/_codecov_bundle_analyzer.options.BundleAnalyzerOptions.html +++ b/interfaces/_codecov_bundle_analyzer.options.BundleAnalyzerOptions.html @@ -1,13 +1,13 @@ BundleAnalyzerOptions | Codecov JavaScript Bundler Plugins

Configuration options for the bundle-analyzer analyzer.

-
interface BundleAnalyzerOptions {
    beforeReportUpload?: ((original) => Promise<Output>);
    ignorePatterns?: string[];
    normalizeAssetsPattern?: string;
}

Properties

interface BundleAnalyzerOptions {
    beforeReportUpload?: ((original) => Promise<Output>);
    ignorePatterns?: string[];
    normalizeAssetsPattern?: string;
}

Properties

beforeReportUpload?: ((original) => Promise<Output>)

Asynchronous function to customize the report output.

This function allows you to modify the report output before it is finalized. By default, it returns the original output without modification.

Type declaration

    • (original): Promise<Output>
    • Parameters

      • original: Output

      Returns Promise<Output>

Returns

A promise that resolves to the customized output.

-
ignorePatterns?: string[]

Patterns to ignore certain files or directories in the analysis. The patterns follow the +

ignorePatterns?: string[]

Patterns to ignore certain files or directories in the analysis. The patterns follow the standard glob pattern syntax. By default, it returns an empty list.

-
normalizeAssetsPattern?: string

A pattern to normalize asset names (e.g., for hashing). By default, it returns an empty string, +

normalizeAssetsPattern?: string

A pattern to normalize asset names (e.g., for hashing). By default, it returns an empty string, which will replace anything "hashlike" with "*".

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/_codecov_bundler_plugin_core.Options.html b/interfaces/_codecov_bundler_plugin_core.Options.html index 077f8e84..18c7d3cc 100644 --- a/interfaces/_codecov_bundler_plugin_core.Options.html +++ b/interfaces/_codecov_bundler_plugin_core.Options.html @@ -1,5 +1,5 @@ Options | Codecov JavaScript Bundler Plugins

Configuration options for the Codecov bundler plugin.

-
interface Options {
    apiUrl?: string;
    bundleName?: string;
    debug?: boolean;
    dryRun?: boolean;
    enableBundleAnalysis?: boolean;
    gitService?: "github" | "gitlab" | "bitbucket" | "github_enterprise" | "gitlab_enterprise" | "bitbucket_server";
    oidc?: {
        gitHubOIDCTokenAudience?: string;
        useGitHubOIDC: boolean;
    };
    retryCount?: number;
    uploadOverrides?: UploadOverrides;
    uploadToken?: string;
}

Properties

interface Options {
    apiUrl?: string;
    bundleName?: string;
    debug?: boolean;
    dryRun?: boolean;
    enableBundleAnalysis?: boolean;
    gitService?: "github" | "gitlab" | "bitbucket" | "github_enterprise" | "gitlab_enterprise" | "bitbucket_server";
    oidc?: {
        gitHubOIDCTokenAudience?: string;
        useGitHubOIDC: boolean;
    };
    retryCount?: number;
    uploadOverrides?: UploadOverrides;
    uploadToken?: string;
}

Properties

apiUrl? bundleName? debug? dryRun? @@ -13,18 +13,18 @@

Only required if self-hosting codecov.

Example: apiUrl: 'https://api.codecov.io'

Defaults to https://api.codecov.io.

-
bundleName?: string

The name for the bundle being built.

+
bundleName?: string

The name for the bundle being built.

Required for uploading bundle analysis information.

The name must match the pattern /^[\w\d_:/@\.{}\[\]$-]+$/.

Example: bundleName: '@codecov/rollup-plugin'

-
debug?: boolean

Option to enable debug logs for the plugin.

-
dryRun?: boolean

When enabled information will not be uploaded to Codecov.

+
debug?: boolean

Option to enable debug logs for the plugin.

+
dryRun?: boolean

When enabled information will not be uploaded to Codecov.

Example: dryRun: true

Defaults to false

-
enableBundleAnalysis?: boolean

Whether you would like bundle analysis to be enabled. *

+
enableBundleAnalysis?: boolean

Whether you would like bundle analysis to be enabled. *

Example: enableBundleAnalysis: true

Defaults to false

-
gitService?: "github" | "gitlab" | "bitbucket" | "github_enterprise" | "gitlab_enterprise" | "bitbucket_server"

Override value for git service used for tokenless uploads. Using tokenless uploads is only +

gitService?: "github" | "gitlab" | "bitbucket" | "github_enterprise" | "gitlab_enterprise" | "bitbucket_server"

Override value for git service used for tokenless uploads. Using tokenless uploads is only supported for public repositories.

Note: If an uploadToken is provided you do not need to provide a gitService.

The value must be one of the following:

@@ -37,7 +37,7 @@
  • bitbucket_server
  • Example gitService: 'github'

    -
    oidc?: {
        gitHubOIDCTokenAudience?: string;
        useGitHubOIDC: boolean;
    }

    Options for OIDC authentication.

    +
    oidc?: {
        gitHubOIDCTokenAudience?: string;
        useGitHubOIDC: boolean;
    }

    Options for OIDC authentication.

    Type declaration

    • Optional gitHubOIDCTokenAudience?: string

      The OIDC audience to use for authentication.

      If you're using a self hosted version of Codecov, you will need to provide the audience for the OIDC token.

      @@ -48,10 +48,10 @@ (OIDC) is required to be configured in order to use GitHub OIDC.

      Defaults to false

      -
    retryCount?: number

    The amount of times the upload function will retry to upload bundle analysis information.

    +
    retryCount?: number

    The amount of times the upload function will retry to upload bundle analysis information.

    Defaults to 3

    -
    uploadOverrides?: UploadOverrides

    Override values for passing custom information to API.

    -
    uploadToken?: string

    The upload token to use for uploading the bundle analysis information.

    +
    uploadOverrides?: UploadOverrides

    Override values for passing custom information to API.

    +
    uploadToken?: string

    The upload token to use for uploading the bundle analysis information.

    This field is required for uploading bundle analysis information in private repositories. Alternatively if you're using GitHub Actions and have configured OIDC authentication you can omit this field, and enable the oidc.useGitHubOIDC option.

    @@ -60,4 +60,4 @@
  • The global upload token can be found under the organization settings page.
  • The repo token can be found under the repo settings page under the general tab.
  • -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/interfaces/_codecov_bundler_plugin_core.UploadOverrides.html b/interfaces/_codecov_bundler_plugin_core.UploadOverrides.html index 95d4a0e6..891e19ab 100644 --- a/interfaces/_codecov_bundler_plugin_core.UploadOverrides.html +++ b/interfaces/_codecov_bundler_plugin_core.UploadOverrides.html @@ -1,14 +1,14 @@ UploadOverrides | Codecov JavaScript Bundler Plugins

    A set of overrides that are passed to Codecov.

    -
    interface UploadOverrides {
        branch?: string;
        build?: string;
        compareSha?: string;
        pr?: string;
        sha?: string;
        slug?: string;
    }

    Properties

    interface UploadOverrides {
        branch?: string;
        build?: string;
        compareSha?: string;
        pr?: string;
        sha?: string;
        slug?: string;
    }

    Properties

    branch?: string

    Specify the branch manually.

    -
    build?: string

    Specify the build number manually.

    -
    compareSha?: string

    Specify the compare SHA manually. GH Actions only.

    -
    pr?: string

    Specify the pull request number manually.

    -
    sha?: string

    Specify the commit SHA manually.

    -
    slug?: string

    Specify the slug manually.

    -

    Generated using TypeDoc

    \ No newline at end of file +
    build?: string

    Specify the build number manually.

    +
    compareSha?: string

    Specify the compare SHA manually. GH Actions only.

    +
    pr?: string

    Specify the pull request number manually.

    +
    sha?: string

    Specify the commit SHA manually.

    +
    slug?: string

    Specify the slug manually.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/_codecov_bundle_analyzer.html b/modules/_codecov_bundle_analyzer.html index a4344dc4..f95fdafb 100644 --- a/modules/_codecov_bundle_analyzer.html +++ b/modules/_codecov_bundle_analyzer.html @@ -1,4 +1,4 @@ -@codecov/bundle-analyzer - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/bundle-analyzer - v1.3.0

    +@codecov/bundle-analyzer - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/bundle-analyzer - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_bundle_analyzer.index.html b/modules/_codecov_bundle_analyzer.index.html index 2a27b409..207f7b23 100644 --- a/modules/_codecov_bundle_analyzer.index.html +++ b/modules/_codecov_bundle_analyzer.index.html @@ -1,3 +1,3 @@ -index | Codecov JavaScript Bundler Plugins

    Index

    Interfaces

    Options +index | Codecov JavaScript Bundler Plugins

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/_codecov_bundle_analyzer.options.html b/modules/_codecov_bundle_analyzer.options.html index e84db90c..17dd48f9 100644 --- a/modules/_codecov_bundle_analyzer.options.html +++ b/modules/_codecov_bundle_analyzer.options.html @@ -1,2 +1,2 @@ -options | Codecov JavaScript Bundler Plugins

    Index

    Interfaces

    BundleAnalyzerOptions +options | Codecov JavaScript Bundler Plugins

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/_codecov_bundler_plugin_core.html b/modules/_codecov_bundler_plugin_core.html index 8dc5e0fe..6af76846 100644 --- a/modules/_codecov_bundler_plugin_core.html +++ b/modules/_codecov_bundler_plugin_core.html @@ -1,4 +1,4 @@ -@codecov/bundler-plugin-core - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/bundler-plugin-core - v1.3.0

    +@codecov/bundler-plugin-core - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/bundler-plugin-core - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_nextjs_webpack_plugin.html b/modules/_codecov_nextjs_webpack_plugin.html index aee27d0a..8f296982 100644 --- a/modules/_codecov_nextjs_webpack_plugin.html +++ b/modules/_codecov_nextjs_webpack_plugin.html @@ -1,4 +1,4 @@ -@codecov/nextjs-webpack-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/nextjs-webpack-plugin - v1.3.0

    +@codecov/nextjs-webpack-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/nextjs-webpack-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_nuxt_plugin.html b/modules/_codecov_nuxt_plugin.html index 1869e893..6b37df3e 100644 --- a/modules/_codecov_nuxt_plugin.html +++ b/modules/_codecov_nuxt_plugin.html @@ -1,4 +1,4 @@ -@codecov/nuxt-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/nuxt-plugin - v1.3.0

    +@codecov/nuxt-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/nuxt-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_remix_vite_plugin.html b/modules/_codecov_remix_vite_plugin.html index 38959bc4..aeea87ae 100644 --- a/modules/_codecov_remix_vite_plugin.html +++ b/modules/_codecov_remix_vite_plugin.html @@ -1,4 +1,4 @@ -@codecov/remix-vite-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/remix-vite-plugin - v1.3.0

    +@codecov/remix-vite-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/remix-vite-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_rollup_plugin.html b/modules/_codecov_rollup_plugin.html index 0d4ebfa4..395ec759 100644 --- a/modules/_codecov_rollup_plugin.html +++ b/modules/_codecov_rollup_plugin.html @@ -1,4 +1,4 @@ -@codecov/rollup-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/rollup-plugin - v1.3.0

    +@codecov/rollup-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/rollup-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_solidstart_plugin.html b/modules/_codecov_solidstart_plugin.html index e7b99f6b..57b3a7f7 100644 --- a/modules/_codecov_solidstart_plugin.html +++ b/modules/_codecov_solidstart_plugin.html @@ -1,4 +1,4 @@ -@codecov/solidstart-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/solidstart-plugin - v1.3.0

    +@codecov/solidstart-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/solidstart-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_sveltekit_plugin.html b/modules/_codecov_sveltekit_plugin.html index 1b664305..cef6b631 100644 --- a/modules/_codecov_sveltekit_plugin.html +++ b/modules/_codecov_sveltekit_plugin.html @@ -1,4 +1,4 @@ -@codecov/sveltekit-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/sveltekit-plugin - v1.3.0

    +@codecov/sveltekit-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/sveltekit-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_vite_plugin.html b/modules/_codecov_vite_plugin.html index 62847615..80fc6b5a 100644 --- a/modules/_codecov_vite_plugin.html +++ b/modules/_codecov_vite_plugin.html @@ -1,4 +1,4 @@ -@codecov/vite-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/vite-plugin - v1.3.0

    +@codecov/vite-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/vite-plugin - v1.4.0

    Codecov by Sentry logo diff --git a/modules/_codecov_webpack_plugin.html b/modules/_codecov_webpack_plugin.html index 57dd3fa3..44b9010c 100644 --- a/modules/_codecov_webpack_plugin.html +++ b/modules/_codecov_webpack_plugin.html @@ -1,4 +1,4 @@ -@codecov/webpack-plugin - v1.3.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/webpack-plugin - v1.3.0

    +@codecov/webpack-plugin - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/webpack-plugin - v1.4.0

    Codecov by Sentry logo