bundle-stats 4.19.1-beta.1 → 4.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
</p>
|
|
9
9
|
<h1 align="center">BundleStats</h1>
|
|
10
10
|
<p align="center">
|
|
11
|
-
Analyze
|
|
11
|
+
Analyze bundle stats(bundle size, assets, modules, packages) and compare the results between different builds. Support for webpack, rspack, vite, rollup and rolldown.
|
|
12
12
|
</p>
|
|
13
13
|
<p align="center">
|
|
14
14
|
<a href="https://www.npmjs.com/package/bundle-stats"><img src="https://img.shields.io/npm/v/bundle-stats.svg" /></a>
|
|
@@ -235,7 +235,7 @@ Github Action that generates [bundle-stats](https://github.com/relative-ci/bundl
|
|
|
235
235
|
|
|
236
236
|
[](https://www.npmjs.com/package/bundle-stats-webpack-plugin) [](https://www.npmjs.com/package/bundle-stats-webpack-plugin)
|
|
237
237
|
|
|
238
|
-
Webpack plugin to generate bundle stats report.
|
|
238
|
+
Webpack plugin to generate bundle stats report for webpack/rspack.
|
|
239
239
|
|
|
240
240
|
### [`gatsby-plugin-bundle-stats`](https://github.com/relative-ci/bundle-stats/tree/master/packages/gatsby-plugin)
|
|
241
241
|
|
|
@@ -253,4 +253,4 @@ Webpack plugin to generate bundle stats report.
|
|
|
253
253
|
|
|
254
254
|
[](https://www.npmjs.com/package/rollup-plugin-bundle-stats) [](https://www.npmjs.com/package/rollup-plugin-bundle-stats)
|
|
255
255
|
|
|
256
|
-
Rollup plugin to generate bundle stats report.
|
|
256
|
+
Rollup plugin to generate bundle stats report for vite/rolldown/rollup.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bundle-stats",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.20.0",
|
|
4
4
|
"description": "In-depth bundle analyzer for webpack(bundle size, assets, modules, packages)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"bundle-stats": "bin/index.js"
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://github.com/relative-ci/bundle-stats/blob/master/packages/cli#readme",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@bundle-stats/cli-utils": "4.
|
|
55
|
-
"@bundle-stats/plugin-webpack-filter": "4.
|
|
56
|
-
"@bundle-stats/plugin-webpack-validate": "4.
|
|
57
|
-
"@bundle-stats/utils": "4.
|
|
54
|
+
"@bundle-stats/cli-utils": "4.20.0",
|
|
55
|
+
"@bundle-stats/plugin-webpack-filter": "4.20.0",
|
|
56
|
+
"@bundle-stats/plugin-webpack-validate": "4.20.0",
|
|
57
|
+
"@bundle-stats/utils": "4.20.0",
|
|
58
58
|
"boxen": "^5.0.0",
|
|
59
59
|
"core-js": "^3.21.0",
|
|
60
60
|
"fs-extra": "^11.0.0",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"yargs": "^17.4.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@playwright/test": "1.
|
|
67
|
+
"@playwright/test": "1.52.0",
|
|
68
68
|
"@types/fs-extra": "^11.0.0",
|
|
69
69
|
"@types/listr": "^0.14.4",
|
|
70
70
|
"@types/yargs": "^17.0.20",
|
|
71
71
|
"http-server": "14.1.1",
|
|
72
72
|
"jest": "29.7.0",
|
|
73
73
|
"rimraf": "6.0.1",
|
|
74
|
-
"typescript": "5.8.
|
|
74
|
+
"typescript": "5.8.3"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "c68e78f170842e38d442497a49dc1f1bb3d3a78a"
|
|
77
77
|
}
|