https://github.com/willworks/img-size-checker
images size checker use in pre-commit
https://github.com/willworks/img-size-checker
Last synced: 7 months ago
JSON representation
images size checker use in pre-commit
- Host: GitHub
- URL: https://github.com/willworks/img-size-checker
- Owner: willworks
- License: mit
- Created: 2017-07-20T13:37:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-10T11:15:04.000Z (over 8 years ago)
- Last Synced: 2025-01-28T05:46:40.847Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# img-size-checker
[![NPM version][npm-image]][npm-url]
[![github location][github-tag]][github-url]
[![Dependency Status][david-image]][david-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
A images size checker use in pre-commit
## Installation
```js
npm install husky // use husky to run precommit script
npm install lint-staged // lint staged code and we hack this to check images size in staged as well
npm install img-size-checker
```
## Precommit configuration
```js
"precommit": "lint-staged",
```
## Lint-staged configuration
```js
"lint-staged": {
"*.{jpg,png}": "img-size-checker 100" // size in kb
}
```
## License
MIT
[npm-image]: https://img.shields.io/npm/v/img-size-checker.svg?style=flat-square
[npm-url]: https://npmjs.org/package/img-size-checker
[github-tag]: http://img.shields.io/github/tag/willworks/img-size-checker.svg?style=flat-square
[github-url]: https://github.com/willworks/img-size-checker/tags
[david-image]: http://img.shields.io/david/willworks/img-size-checker.svg?style=flat-square
[david-url]: https://david-dm.org/willworks/img-size-checker
[license-image]: http://img.shields.io/npm/l/img-size-checker.svg?style=flat-square
[license-url]: LICENSE
[downloads-image]: http://img.shields.io/npm/dm/img-size-checker.svg?style=flat-square
[downloads-url]: https://npmjs.org/package/img-size-checker