![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
rollup-plugin-sizes
Advanced tools
Simple analysis on rollup bundling, helping you to spot libaries bloating up your bundles.
/src/index.js:
codemirror - 446.92 KB (35.94%)
remarkable - 193.72 KB (15.58%)
app - 95.87 KB (7.71%)
autolinker - 81.64 KB (6.57%)
lodash.filter - 62.77 KB (5.05%)
...
or with way more details!
/src/index.js:
codemirror - 446.92 KB (35.94%)
lib\codemirror.js - 347.8 KB (77.82%)
mode\javascript\javascript.js - 27.78 KB (6.22%)
mode\markdown\markdown.js - 25.54 KB (5.72%)
mode\meta.js - 14.44 KB (3.23%)
mode\xml\xml.js - 12.52 KB (2.80%)
addon\edit\closebrackets.js - 7.04 KB (1.58%)
addon\edit\matchbrackets.js - 5.39 KB (1.21%)
addon\comment\continuecomment.js - 3.59 KB (0.80%)
addon\selection\active-line.js - 2.82 KB (0.63%)
remarkable - 193.72 KB (15.58%)
lib\common\entities.js - 46.44 KB (23.97%)
lib\rules.js - 10.2 KB (5.26%)
lib\rules_block\list.js - 6.65 KB (3.43%)
lib\ruler.js - 5.44 KB (2.81%)
lib\rules_block\deflist.js - 5.22 KB (2.69%)
...
$ npm i rollup-plugin-sizes -D
Add to your rollup build as the last plugin via JS API or Config file.
var rollup = require("rollup"),
buble = require("rollup-plugin-buble"),
sizes = require("rollup-plugin-sizes");
rollup.rollup({
entry : "src/main.js",
plugins : [
buble(),
sizes()
]
}).then(function(bundle) {
...
});
import buble from 'rollup-plugin-buble';
import sizes from 'rollup-plugin-sizes';
export default {
...
plugins : [
buble(),
sizes()
]
};
details
- Set to true to enable file-by-file breakdowns of space usage.
report
- Customize reporting. See source code for the default reporter.
This project's version number currently has a "0.x" prefix, indicating that it's a young project under heavy development. As long as the version number starts with "0.x", minor revisions may introduce breaking changes.
You've been warned!
Once it reaches version 1.0.0, it will adhere strictly to SemVer 2.0.
FAQs
Show info about files/packages included with your rollup bundle
The npm package rollup-plugin-sizes receives a total of 3,627 weekly downloads. As such, rollup-plugin-sizes popularity was classified as popular.
We found that rollup-plugin-sizes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.