https://github.com/jsdir/resize-brunch
Automatically resizes images.
https://github.com/jsdir/resize-brunch
Last synced: about 1 month ago
JSON representation
Automatically resizes images.
- Host: GitHub
- URL: https://github.com/jsdir/resize-brunch
- Owner: jsdir
- Created: 2014-03-04T13:11:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-21T10:30:36.000Z (over 12 years ago)
- Last Synced: 2025-11-16T22:18:40.033Z (7 months ago)
- Language: CoffeeScript
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
resize-brunch
=============
Automatically resizes images.
Usage
=====
### Configuration Options
```coffeescript
exports.config =
plugins:
resize:
"app/assets/images/originals":
height: 64
width: 64
dest: "images/thumbnails_64px"
```
#### Multiple option sets
```coffeescript
exports.config =
plugins:
resize:
"app/assets/images/originals": [
height: 64
width: 64
dest: "images/thumbnails_64px"
,
height: 32
width: 32
dest: "images/thumbnails_32px"
]
```