Skip to content

Commit 213a259

Browse files
authored
docs: Update readme examples (#49)
Small update to the readme docs.
1 parent ac22029 commit 213a259

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/rollup-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default defineConfig({
4444
codecovRollupPlugin({
4545
enableBundleAnalysis: true,
4646
bundleName: "example-rollup-bundle",
47-
globalUploadToken: process.env.CODECOV_TOKEN,
47+
uploadToken: process.env.CODECOV_TOKEN,
4848
}),
4949
],
5050
});

packages/vite-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default defineConfig({
4444
codecovVitePlugin({
4545
enableBundleAnalysis: true,
4646
bundleName: "example-vite-bundle",
47-
globalUploadToken: process.env.CODECOV_TOKEN,
47+
uploadToken: process.env.CODECOV_TOKEN,
4848
}),
4949
],
5050
});

packages/webpack-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports = {
5050
codecovWebpackPlugin({
5151
enableBundleAnalysis: true,
5252
bundleName: "example-webpack-bundle",
53-
globalUploadToken: process.env.CODECOV_TOKEN,
53+
uploadToken: process.env.CODECOV_TOKEN,
5454
}),
5555
],
5656
};

0 commit comments

Comments
 (0)