rollup-plugin-stats 1.1.1 → 1.1.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/LICENSE +2 -2
- package/README.md +24 -1
- package/package.json +11 -8
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2024 RelativeCI
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/rollup-plugin-stats)
|
|
4
4
|

|
|
5
5
|
[](https://socket.dev/npm/package/rollup-plugin-stats)
|
|
6
|
-
[](https://github.com/relative-ci/rollup-plugin-stats/actions/workflows/ci.yml)
|
|
7
7
|
|
|
8
8
|
Output Rollup stats JSON file
|
|
9
9
|
|
|
@@ -53,3 +53,26 @@ module.exports = {
|
|
|
53
53
|
- `source` - output asset/chunk/module source (default `false`)
|
|
54
54
|
- `excludeAssets` - exclude matching assets: `string | RegExp | ((filepath: string) => boolean) | Array<string | RegExp | ((filepath: string) => boolean)>`
|
|
55
55
|
- `excludeModules` - exclude matching modules: `string | RegExp | ((filepath: string) => boolean) | Array<string | RegExp | ((filepath: string) => boolean)>`
|
|
56
|
+
|
|
57
|
+
## Related projects
|
|
58
|
+
|
|
59
|
+
### [rollup-plugin-webpack-stats](https://github.com/relative-ci/rollup-plugin-webpack-stats)
|
|
60
|
+
|
|
61
|
+
Generate rollup stats JSON file with a [bundle-stats](https://github.com/relative-ci/bundle-stats/tree/master/packages/cli) webpack [supported structure](https://github.com/relative-ci/bundle-stats/blob/master/packages/plugin-webpack-filter/src/index.ts).
|
|
62
|
+
|
|
63
|
+
### [bundle-stats](https://github.com/relative-ci/bundle-stats)
|
|
64
|
+
|
|
65
|
+
Analyze webpack stats(bundle size, assets, modules, packages) and compare the results between different builds. Support for webpack, rspack, vite, rollup.
|
|
66
|
+
|
|
67
|
+
### :cyclone: [relative-ci.com](https://relative-ci.com?utm_medium=rollup-plugin-stats)
|
|
68
|
+
|
|
69
|
+
#### Optimize your web app's performance with automated bundle stats analysis and monitoring.
|
|
70
|
+
|
|
71
|
+
- :crystal_ball: In-depth bundle stats analysis for every build
|
|
72
|
+
- :chart_with_upwards_trend: Monitor bundle stats changes and identify opportunities for optimizations
|
|
73
|
+
- :bell: [Rule based automated review flow](https://relative-ci.com/documentation/setup/configure/integrations/github-commit-status-review?utm_medium=rollup-plugin-stats), or get notified via [GitHub Pull Request comments](https://relative-ci.com/documentation/setup/configure/integrations/github-pull-request-comment?utm_medium=rollup-plugin-stats), [GitHub check reports](https://relative-ci.com/documentation/setup/configure/integrations/github-check-report?utm_medium=rollup-plugin-stats) and [Slack messages](https://relative-ci.com/documentation/setup/configure/integrations/slack-notification?utm_medium=rollup-plugin-stats)
|
|
74
|
+
- :wrench: Support for **webpack** and beta support for **Vite**/**Rollup**
|
|
75
|
+
- :hammer: Support for all major CI services(CircleCI, GitHub Actions, Gitlab CI, Jenkins, Travis CI)
|
|
76
|
+
- :nut_and_bolt: Support for **npm**, **yarn** and **pnpm**; support for monorepos
|
|
77
|
+
- :two_hearts: **Always free** for **Open Source**
|
|
78
|
+
|
package/package.json
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup-plugin-stats",
|
|
3
3
|
"description": "Output Rollup stats",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
|
-
"author": {
|
|
8
|
-
"name": "Viorel Cojocaru",
|
|
9
|
-
"email": "vio@beanon.com",
|
|
10
|
-
"url": "https://beanon.com"
|
|
11
|
-
},
|
|
12
7
|
"repository": {
|
|
13
8
|
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/relative-ci/rollup-plugin-stats.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/relative-ci/rollup-plugin-stats/issues"
|
|
13
|
+
},
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Viorel Cojocaru",
|
|
16
|
+
"email": "vio@relative-ci.com",
|
|
17
|
+
"url": "https://relative-ci.com"
|
|
15
18
|
},
|
|
16
19
|
"keywords": [
|
|
17
20
|
"rollup",
|
|
@@ -19,7 +22,7 @@
|
|
|
19
22
|
"stats"
|
|
20
23
|
],
|
|
21
24
|
"main": "dist/index.cjs",
|
|
22
|
-
"module": "dist/index.
|
|
25
|
+
"module": "dist/index.mjs",
|
|
23
26
|
"typings": "dist/index.d.ts",
|
|
24
27
|
"files": [
|
|
25
28
|
"dist"
|