Skip to content

Commit 543a526

Browse files
authored
build: Update dependencies for making repo public(#64)
Update deps across all packages in prep to make the repo public.
1 parent c755a5c commit 543a526

File tree

17 files changed

+1450
-1293
lines changed

17 files changed

+1450
-1293
lines changed

.changeset/calm-points-mix.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@codecov/bundler-plugin-core": patch
3+
"@codecov/webpack-plugin": patch
4+
"@codecov/rollup-plugin": patch
5+
"@codecov/vite-plugin": patch
6+
---
7+
8+
Update dependencies before moving package out of alpha

examples/next-js/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"next": "14.0.3",
13-
"react": "^18",
14-
"react-dom": "^18"
12+
"next": "14.1.0",
13+
"react": "^18.2.0",
14+
"react-dom": "^18.2.0"
1515
},
1616
"devDependencies": {
1717
"@codecov/webpack-plugin": "workspace:^",
18-
"@types/node": "^20",
19-
"@types/react": "^18",
20-
"@types/react-dom": "^18",
21-
"autoprefixer": "^10.0.1",
22-
"eslint": "^8",
23-
"eslint-config-next": "14.0.3",
24-
"postcss": "^8",
25-
"tailwindcss": "^3.3.0",
26-
"typescript": "^5"
18+
"@types/node": "^20.11.15",
19+
"@types/react": "^18.2.51",
20+
"@types/react-dom": "^18.2.18",
21+
"autoprefixer": "^10.4.17",
22+
"eslint": "^8.56.0",
23+
"eslint-config-next": "14.1.0",
24+
"postcss": "^8.4.33",
25+
"tailwindcss": "^3.4.1",
26+
"typescript": "^5.3.3"
2727
},
2828
"volta": {
2929
"extends": "../../package.json"

examples/rollup/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
"name": "@codecov/rollup-plugin-example",
33
"version": "1.0.0",
44
"main": "index.js",
5+
"type": "module",
56
"scripts": {
67
"build": "rollup -c",
78
"watch": "rollup -c -w",
89
"dev": "npm-run-all --parallel start watch",
910
"start": "serve public"
1011
},
1112
"dependencies": {
12-
"date-fns": "^2.16.1"
13+
"date-fns": "^3.3.1"
1314
},
1415
"devDependencies": {
1516
"@codecov/rollup-plugin": "workspace:^",
16-
"@rollup/plugin-commonjs": "^17.0.0",
17-
"@rollup/plugin-node-resolve": "^11.1.0",
17+
"@rollup/plugin-commonjs": "^25.0.7",
18+
"@rollup/plugin-node-resolve": "^15.2.3",
1819
"npm-run-all": "^4.1.5",
19-
"rollup": "^2.36.2",
20-
"rollup-plugin-terser": "^7.0.2",
21-
"serve": "^11.3.2"
20+
"rollup": "^4.9.6",
21+
"serve": "^14.2.1"
2222
},
2323
"volta": {
2424
"extends": "../../package.json"

examples/rollup/rollup.config.ts renamed to examples/rollup/rollup.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import resolve from "@rollup/plugin-node-resolve";
22
import commonjs from "@rollup/plugin-commonjs";
3-
import { terser } from "rollup-plugin-terser";
43
import { codecovRollupPlugin } from "@codecov/rollup-plugin";
54
import { defineConfig } from "rollup";
65

@@ -18,7 +17,6 @@ export default defineConfig({
1817
plugins: [
1918
resolve(), // tells Rollup how to find date-fns in node_modules
2019
commonjs(), // converts date-fns to ES modules
21-
production && terser(), // minify, but only in production
2220
codecovRollupPlugin({
2321
enableBundleAnalysis: true,
2422
bundleName: "example-rollup-app",

examples/vite/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
},
1616
"devDependencies": {
1717
"@codecov/vite-plugin": "workspace:^",
18-
"@types/react": "^18.2.15",
19-
"@types/react-dom": "^18.2.7",
20-
"@typescript-eslint/eslint-plugin": "^6.0.0",
21-
"@typescript-eslint/parser": "^6.0.0",
22-
"@vitejs/plugin-react": "^4.0.3",
23-
"eslint": "^8.45.0",
18+
"@types/react": "^18.2.51",
19+
"@types/react-dom": "^18.2.18",
20+
"@typescript-eslint/eslint-plugin": "^6.20.0",
21+
"@typescript-eslint/parser": "^6.20.0",
22+
"@vitejs/plugin-react": "^4.2.1",
23+
"eslint": "^8.56.0",
2424
"eslint-plugin-react-hooks": "^4.6.0",
25-
"eslint-plugin-react-refresh": "^0.4.3",
26-
"rollup": "^4.1.4",
27-
"typescript": "^5.0.2",
28-
"vite": "^4.4.5"
25+
"eslint-plugin-react-refresh": "^0.4.5",
26+
"rollup": "^4.9.6",
27+
"typescript": "^5.3.3",
28+
"vite": "^5.0.12"
2929
},
3030
"volta": {
3131
"extends": "../../package.json"

examples/webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"devDependencies": {
1212
"@codecov/webpack-plugin": "workspace:^",
13-
"webpack": "^5.89.0",
13+
"webpack": "^5.90.0",
1414
"webpack-cli": "^5.1.4"
1515
},
1616
"engines": {

integration-tests/fixtures/generate-bundle-stats/rollup/__snapshots__/rollup-v3-plugin.test.ts.snap

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ exports[`Generating rollup stats version 3 matches the snapshot 1`] = `
44
{
55
"assets": [
66
{
7-
"name": "main-3e7d1fad.js",
7+
"name": "main-6ff1e9ca.js",
88
"normalized": "main-*.js",
9-
"size": 544589,
9+
"size": 560871,
1010
},
1111
],
1212
"builtAt": Any<Number>,
@@ -19,7 +19,7 @@ exports[`Generating rollup stats version 3 matches the snapshot 1`] = `
1919
{
2020
"entry": true,
2121
"files": [
22-
"main-3e7d1fad.js",
22+
"main-6ff1e9ca.js",
2323
],
2424
"id": "main",
2525
"initial": false,
@@ -36,14 +36,21 @@ exports[`Generating rollup stats version 3 matches the snapshot 1`] = `
3636
"0-main",
3737
],
3838
"name": "./commonjsHelpers.js",
39-
"size": 315,
39+
"size": 334,
40+
},
41+
{
42+
"chunkUniqueIds": [
43+
"0-main",
44+
],
45+
"name": "../node_modules/.pnpm/[email protected]/node_modules/lodash/lodash.js?commonjs-module",
46+
"size": 27,
4047
},
4148
{
4249
"chunkUniqueIds": [
4350
"0-main",
4451
],
4552
"name": "../node_modules/.pnpm/[email protected]/node_modules/lodash/lodash.js",
46-
"size": 544001,
53+
"size": 560240,
4754
},
4855
{
4956
"chunkUniqueIds": [
@@ -57,7 +64,7 @@ exports[`Generating rollup stats version 3 matches the snapshot 1`] = `
5764
"0-main",
5865
],
5966
"name": "./test-apps/rollup/src/main.js",
60-
"size": 168,
67+
"size": 163,
6168
},
6269
],
6370
"outputPath": StringContaining "/distV3",

integration-tests/fixtures/generate-bundle-stats/rollup/__snapshots__/rollup-v4-plugin.test.ts.snap

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ exports[`Generating rollup stats version 4 matches the snapshot 1`] = `
44
{
55
"assets": [
66
{
7-
"name": "main--erNqm0D.js",
8-
"normalized": "main--erNqm0D.js",
9-
"size": 544589,
7+
"name": "main-v-vWaFyT.js",
8+
"normalized": "main-v-vWaFyT.js",
9+
"size": 560871,
1010
},
1111
],
1212
"builtAt": Any<Number>,
1313
"bundleName": "rollup-test-es",
1414
"bundler": {
1515
"name": "rollup",
16-
"version": "4.6.0",
16+
"version": "4.9.6",
1717
},
1818
"chunks": [
1919
{
2020
"entry": true,
2121
"files": [
22-
"main--erNqm0D.js",
22+
"main-v-vWaFyT.js",
2323
],
2424
"id": "main",
2525
"initial": false,
@@ -36,14 +36,21 @@ exports[`Generating rollup stats version 4 matches the snapshot 1`] = `
3636
"0-main",
3737
],
3838
"name": "./commonjsHelpers.js",
39-
"size": 315,
39+
"size": 334,
40+
},
41+
{
42+
"chunkUniqueIds": [
43+
"0-main",
44+
],
45+
"name": "../node_modules/.pnpm/[email protected]/node_modules/lodash/lodash.js?commonjs-module",
46+
"size": 27,
4047
},
4148
{
4249
"chunkUniqueIds": [
4350
"0-main",
4451
],
4552
"name": "../node_modules/.pnpm/[email protected]/node_modules/lodash/lodash.js",
46-
"size": 544001,
53+
"size": 560240,
4754
},
4855
{
4956
"chunkUniqueIds": [
@@ -57,7 +64,7 @@ exports[`Generating rollup stats version 4 matches the snapshot 1`] = `
5764
"0-main",
5865
],
5966
"name": "./test-apps/rollup/src/main.js",
60-
"size": 168,
67+
"size": 163,
6168
},
6269
],
6370
"outputPath": StringContaining "/distV4",

integration-tests/fixtures/generate-bundle-stats/vite/__snapshots__/vite-v5-plugin.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`Generating vite stats version 5 matches the snapshot 1`] = `
1313
"bundleName": "vite-test-es",
1414
"bundler": {
1515
"name": "rollup",
16-
"version": "4.6.0",
16+
"version": "4.9.6",
1717
},
1818
"chunks": [
1919
{

integration-tests/fixtures/generate-bundle-stats/webpack/__snapshots__/webpack-v5-plugin.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`Generating webpack stats version 5 matches the snapshot 1`] = `
1313
"bundleName": "webpack-test-array-push",
1414
"bundler": {
1515
"name": "webpack",
16-
"version": "5.89.0",
16+
"version": "5.90.0",
1717
},
1818
"chunks": [
1919
{

0 commit comments

Comments
 (0)