Lightweight
,Convenient
,Fast
command tool to control your file size,size-limit
is too bloated.
$ npm i --save-dev limit-size
- Add the
limit-size
section and thesize
script to yourpackage.json
:
"scripts": {
+ "size": "limit-size",
"test": "jest"
},
+ "limit-size": [
+ {
+ "path": "dist/g2plot.min.js",
+ "limit": "500 Kb"
+ },
+ {
+ "path": "dist/g2plot.min.js",
+ "limit": "200 Kb",
+ "gzip": true
+ }
+ ],
- you can get the size for your current project:
$ npm run size
# install dependence
$ npm install
# run test cases
$ npm run test
# build package
$ npm run build
# run size local
$ npm run size
MIT@hustcc.