From b3e4da9e981992d78129f4cc5a5e5c25d396cc9d Mon Sep 17 00:00:00 2001 From: codecov-releaser Date: Mon, 2 Dec 2024 18:05:23 +0000 Subject: [PATCH] meta: Update docs --- ..._analyzer.index.createAndUploadReport.html | 2 +- ...ecov_bundler_plugin_core.handleErrors.html | 2 +- ..._bundler_plugin_core.normalizeOptions.html | 2 +- ...ack_plugin.codecovNextJSWebpackPlugin.html | 2 +- functions/_codecov_nuxt_plugin.default.html | 6 ++--- ...ix_vite_plugin.codecovRemixVitePlugin.html | 2 +- ...cov_rollup_plugin.codecovRollupPlugin.html | 2 +- ...dstart_plugin.codecovSolidStartPlugin.html | 2 +- ...eltekit_plugin.codecovSvelteKitPlugin.html | 2 +- ...codecov_vite_plugin.codecovVitePlugin.html | 2 +- ...v_webpack_plugin.codecovWebpackPlugin.html | 2 +- ...nalyzer.options.BundleAnalyzerOptions.html | 8 +++---- .../_codecov_bundler_plugin_core.Options.html | 22 +++++++++---------- ...v_bundler_plugin_core.UploadOverrides.html | 14 ++++++------ modules/_codecov_bundle_analyzer.html | 2 +- modules/_codecov_bundle_analyzer.index.html | 2 +- modules/_codecov_bundle_analyzer.options.html | 2 +- modules/_codecov_bundler_plugin_core.html | 2 +- modules/_codecov_nextjs_webpack_plugin.html | 2 +- modules/_codecov_nuxt_plugin.html | 2 +- modules/_codecov_remix_vite_plugin.html | 2 +- modules/_codecov_rollup_plugin.html | 2 +- modules/_codecov_solidstart_plugin.html | 2 +- modules/_codecov_sveltekit_plugin.html | 2 +- modules/_codecov_vite_plugin.html | 2 +- modules/_codecov_webpack_plugin.html | 2 +- 26 files changed, 47 insertions(+), 47 deletions(-) diff --git a/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html b/functions/_codecov_bundle_analyzer.index.createAndUploadReport.html index 58b7dad3..516b3bbc 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 39fdc3dd..9ee1e6c0 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 0d680e4a..88ff5fd0 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 04f319f4..c97d0ea3 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 6e3f3cf0..0628feb7 100644 --- a/functions/_codecov_nuxt_plugin.default.html +++ b/functions/_codecov_nuxt_plugin.default.html @@ -1,5 +1,5 @@ -default | Codecov JavaScript Bundler Plugins
  • Details for the Codecov Nuxt module.

    -

    Parameters

    • this: void
    • inlineOptions: Options
    • nuxt: Nuxt

    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",
    },
    ],
    ],
    }); +default | Codecov JavaScript Bundler Plugins
    • Details for the Codecov Nuxt module.

      +

      Parameters

      • this: void
      • resolvedOptions: Options
      • nuxt: Nuxt

      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 baee0fc7..b639d693 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 2bdcc159..df3d0fb7 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 cd0be500..c0a59655 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 3629f196..b839c06d 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 4758cf96..d9fbfb52 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 bd2dd57c..a7a35f80 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 1f0c1f1c..1756f179 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 18c7d3cc..9027f9ee 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 891e19ab..a8275d5d 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 f95fdafb..caabfb9b 100644 --- a/modules/_codecov_bundle_analyzer.html +++ b/modules/_codecov_bundle_analyzer.html @@ -1,4 +1,4 @@ -@codecov/bundle-analyzer - v1.4.0 | Codecov JavaScript Bundler Plugins

    Module @codecov/bundle-analyzer - v1.4.0

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

    Module @codecov/bundle-analyzer - v1.5.0

    Codecov by Sentry logo diff --git a/modules/_codecov_bundle_analyzer.index.html b/modules/_codecov_bundle_analyzer.index.html index 207f7b23..5b9b6b14 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 17dd48f9..591feaef 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 6af76846..96519a97 100644 --- a/modules/_codecov_bundler_plugin_core.html +++ b/modules/_codecov_bundler_plugin_core.html @@ -1,4 +1,4 @@ -@codecov/bundler-plugin-core - v1.4.0 | Codecov JavaScript Bundler Plugins

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

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

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

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

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

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

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

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

    Module @codecov/nuxt-plugin - v1.4.0

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

    Module @codecov/nuxt-plugin - v1.5.0

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

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

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

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

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

    Module @codecov/rollup-plugin - v1.4.0

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

    Module @codecov/rollup-plugin - v1.5.0

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

    Module @codecov/solidstart-plugin - v1.4.0

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

    Module @codecov/solidstart-plugin - v1.5.0

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

    Module @codecov/sveltekit-plugin - v1.4.0

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

    Module @codecov/sveltekit-plugin - v1.5.0

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

    Module @codecov/vite-plugin - v1.4.0

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

    Module @codecov/vite-plugin - v1.5.0

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

    Module @codecov/webpack-plugin - v1.4.0

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

    Module @codecov/webpack-plugin - v1.5.0

    Codecov by Sentry logo