after-brunch-gbk
Version:
A micro-plugin to run commands line scripts after Brunch's compile.
20 lines (16 loc) • 609 B
Markdown
## after-brunch-gbk
fork from https://github.com/Creative-Licence-Digital/after-brunch
Want to run something on the command line everytime [brunch](http://brunch.io) compiles? Easy.
## Usage
Add `"after-brunch": "x.y.z"` to `package.json` of your brunch app.
Or `npm install after-brunch --save`.
Then in your `config.coffee` just add any commands to the afterBrunch array.
For example, you might want to use styledocco to create a live styleguide of your stylesheets.
```coffeescript
exports.config =
…
plugins:
afterBrunch: [
'styledocco -n "My Project" css'
]
```