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/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
46+
"size": 27,
4047
},
4148
{
4249
"chunkUniqueIds": [
4350
"0-main",
4451
],
4552
"name": "../node_modules/.pnpm/lodash@4.17.21/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/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
46+
"size": 27,
4047
},
4148
{
4249
"chunkUniqueIds": [
4350
"0-main",
4451
],
4552
"name": "../node_modules/.pnpm/lodash@4.17.21/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
{

integration-tests/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
"@codecov/rollup-plugin": "workspace:^",
2323
"@codecov/vite-plugin": "workspace:^",
2424
"@codecov/webpack-plugin": "workspace:^",
25-
"@rollup/plugin-commonjs": "^17.0.0",
26-
"@rollup/plugin-node-resolve": "^11.2.1",
27-
"@swc/core": "^1.3.99",
28-
"@swc/jest": "^0.2.29",
29-
"@types/jest": "^29.5.10",
30-
"@types/node": "^20.10.3",
25+
"@rollup/plugin-commonjs": "^25.0.7",
26+
"@rollup/plugin-node-resolve": "^15.2.3",
27+
"@swc/core": "^1.3.107",
28+
"@swc/jest": "^0.2.33",
29+
"@types/jest": "^29.5.11",
30+
"@types/node": "^20.11.15",
3131
"jest": "^29.7.0",
3232
"rollupV3": "npm:rollup@3.29.4",
33-
"rollupV4": "npm:rollup@4.6.0",
34-
"ts-node": "^10.9.1",
33+
"rollupV4": "npm:rollup@4.9.6",
34+
"ts-node": "^10.9.2",
3535
"viteV4": "npm:vite@4.5.1",
36-
"viteV5": "npm:vite@5.0.3",
37-
"webpackV5": "npm:webpack@5.89.0"
36+
"viteV5": "npm:vite@5.0.12",
37+
"webpackV5": "npm:webpack@5.90.0"
3838
},
3939
"volta": {
40-
"extends": "../../package.json"
40+
"extends": "../package.json"
4141
}
4242
}

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@
2626
"devDependencies": {
2727
"@changesets/cli": "^2.27.1",
2828
"@total-typescript/ts-reset": "^0.5.1",
29-
"@types/eslint": "^8.44.7",
30-
"@types/node": "^20.10.0",
31-
"@typescript-eslint/eslint-plugin": "^6.13.1",
32-
"@typescript-eslint/parser": "^6.13.1",
33-
"eslint": "^8.54.0",
34-
"eslint-config-prettier": "^9.0.0",
35-
"eslint-plugin-import": "^2.29.0",
36-
"eslint-plugin-isaacscript": "^3.5.8",
37-
"eslint-plugin-prettier": "^5.0.1",
38-
"husky": "^8.0.0",
39-
"lint-staged": "^15.2.0",
40-
"prettier": "^3.1.0",
41-
"typescript": "^5.3.2"
29+
"@types/eslint": "^8.56.2",
30+
"@types/node": "^20.11.15",
31+
"@typescript-eslint/eslint-plugin": "^6.20.0",
32+
"@typescript-eslint/parser": "^6.20.0",
33+
"eslint": "^8.56.0",
34+
"eslint-config-prettier": "^9.1.0",
35+
"eslint-plugin-import": "^2.29.1",
36+
"eslint-plugin-isaacscript": "^3.12.2",
37+
"eslint-plugin-prettier": "^5.1.3",
38+
"husky": "^8.0.3",
39+
"lint-staged": "^15.2.1",
40+
"prettier": "^3.2.4",
41+
"typescript": "^5.3.3"
4242
},
4343
"lint-staged": {
4444
"*.{js,jsx,ts,tsx,json,css,scss,md,json}": [

packages/bundler-plugin-core/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,21 @@
3838
"dependencies": {
3939
"chalk": "4.1.2",
4040
"semver": "^7.5.4",
41-
"unplugin": "^1.5.1",
41+
"unplugin": "^1.6.0",
4242
"zod": "^3.22.4"
4343
},
4444
"devDependencies": {
45-
"@swc/core": "^1.3.99",
46-
"@swc/jest": "^0.2.29",
47-
"@types/jest": "^29.5.10",
48-
"@types/node": "^20.10.0",
45+
"@swc/core": "^1.3.107",
46+
"@swc/jest": "^0.2.33",
47+
"@types/jest": "^29.5.11",
48+
"@types/node": "^20.11.15",
4949
"@types/semver": "^7.5.6",
5050
"jest": "^29.7.0",
51-
"msw": "^2.0.9",
51+
"msw": "^2.1.5",
5252
"testdouble": "^3.20.1",
5353
"testdouble-jest": "^2.0.0",
54-
"ts-node": "^10.9.1",
55-
"typescript": "^5.3.2",
54+
"ts-node": "^10.9.2",
55+
"typescript": "^5.3.3",
5656
"unbuild": "^2.0.0"
5757
},
5858
"volta": {

packages/rollup-plugin/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
"@codecov/bundler-plugin-core": "workspace:^"
4646
},
4747
"devDependencies": {
48-
"@swc/core": "^1.3.99",
49-
"@swc/jest": "^0.2.29",
50-
"@types/jest": "^29.5.10",
51-
"@types/node": "^20.10.0",
48+
"@swc/core": "^1.3.107",
49+
"@swc/jest": "^0.2.33",
50+
"@types/jest": "^29.5.11",
51+
"@types/node": "^20.11.15",
5252
"jest": "^29.7.0",
53-
"msw": "^2.0.9",
54-
"rollup": "4.6.0",
55-
"ts-node": "^10.9.1",
56-
"typescript": "^5.3.2",
53+
"msw": "^2.1.5",
54+
"rollup": "4.9.6",
55+
"ts-node": "^10.9.2",
56+
"typescript": "^5.3.3",
5757
"unbuild": "^2.0.0"
5858
},
5959
"peerDependencies": {

0 commit comments

Comments
 (0)