https://github.com/jsdir/resize-brunch
Automatically resizes images.
https://github.com/jsdir/resize-brunch
Last synced: 5 months ago
JSON representation
Automatically resizes images.
- Host: GitHub
- URL: https://github.com/jsdir/resize-brunch
- Owner: jsdir
- Created: 2014-03-04T13:11:30.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-21T10:30:36.000Z (about 12 years ago)
- Last Synced: 2025-04-13T02:33:17.295Z (about 1 year ago)
- Language: CoffeeScript
- Size: 137 KB
- Stars: 0
- Watchers: 2
- 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"
]
```