bundle-stats 4.22.2-beta.0 → 4.22.2

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 CHANGED
@@ -32,6 +32,7 @@
32
32
  </p>
33
33
 
34
34
  ## Table of Contents
35
+
35
36
  - [Install as global dependency](#install-as-global-dependency)
36
37
  - [Install as dev dependency](#install-as-dev-dependency)
37
38
  - [Webpack configuration](#webpack-configuration)
@@ -101,6 +102,7 @@ npx webpack --mode production --json artifacts/webpack-stats.json
101
102
  [Guide & examples: How to output webpack stats JSON file using webpack-stats-plugin](https://relative-ci.com/documentation/guides/webpack-stats/webpack-stats-plugin)
102
103
 
103
104
  ##### Learn more
105
+
104
106
  - [Guide: How to configure webpack for better debugging and monitoring](https://relative-ci.com/documentation/guides/webpack-config)
105
107
 
106
108
  ### vite/rollup/rolldown stats
@@ -108,6 +110,7 @@ npx webpack --mode production --json artifacts/webpack-stats.json
108
110
  [Guide & examples: How to output stats in Vite](https://relative-ci.com/documentation/guides/bundle-stats/vite)
109
111
 
110
112
  #### Learn more
113
+
111
114
  - [Guide How to configure vite for better debugging and monitoring](https://relative-ci.com/documentation/guides/vite-config)
112
115
 
113
116
  ## Usage
@@ -245,7 +248,6 @@ Standalone web application to compare Webpack/Lighthouse/Browsertime stats.
245
248
 
246
249
  Github Action that generates [bundle-stats](https://github.com/relative-ci/bundle-stats) reports.
247
250
 
248
-
249
251
  ## Other packages
250
252
 
251
253
  ### [`bundle-stats-webpack-plugin`](https://github.com/relative-ci/bundle-stats/tree/master/packages/webpack-plugin)
package/bin/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ // eslint-disable-next-line import/extensions
3
4
  const { cli } = require('..');
4
5
  const packageInfo = require('../package.json');
5
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bundle-stats",
3
- "version": "4.22.2-beta.0",
3
+ "version": "4.22.2",
4
4
  "description": "In-depth bundle analyzer for webpack(bundle size, assets, modules, packages)",
5
5
  "bin": {
6
6
  "bundle-stats": "bin/index.js"
@@ -17,11 +17,10 @@
17
17
  "copy-fixtures": "./scripts/copy-fixtures.sh",
18
18
  "build": "npm run clean && npm run copy-fixtures && tsdown",
19
19
  "clean": "rimraf lib",
20
- "lint": "eslint",
20
+ "lint": "eslint .",
21
21
  "serve-demo": "./bin/index.js --demo && http-server dist",
22
22
  "test": "echo \"No tests\" && exit 0",
23
- "pretest:package": "cd test/package && npm install --force",
24
- "test:package": "cd test/package && npm test --",
23
+ "test:package": "cd test/package && npm install --force && npm test --",
25
24
  "test:e2e": "playwright test"
26
25
  },
27
26
  "keywords": [
@@ -51,10 +50,10 @@
51
50
  },
52
51
  "homepage": "https://github.com/relative-ci/bundle-stats/blob/master/packages/cli#readme",
53
52
  "dependencies": {
54
- "@bundle-stats/cli-utils": "4.22.2-beta.0",
55
- "@bundle-stats/plugin-webpack-filter": "4.22.2-beta.0",
56
- "@bundle-stats/plugin-webpack-validate": "4.22.2-beta.0",
57
- "@bundle-stats/utils": "4.22.2-beta.0",
53
+ "@bundle-stats/cli-utils": "^4.22.2",
54
+ "@bundle-stats/plugin-webpack-filter": "^4.22.2",
55
+ "@bundle-stats/plugin-webpack-validate": "^4.22.2",
56
+ "@bundle-stats/utils": "^4.22.2",
58
57
  "boxen": "^5.0.0",
59
58
  "core-js": "^3.21.0",
60
59
  "fs-extra": "^11.3.5",
@@ -75,5 +74,5 @@
75
74
  "typescript": "5.9.3",
76
75
  "update-notifier": "7.3.1"
77
76
  },
78
- "gitHead": "94aa29230add5d8375b72627363b0b4447da3ab2"
77
+ "gitHead": "6696f34f552a50dcafbd7c8054e2b2f07a036068"
79
78
  }