grunt-contrib-jst/docs/jst-overview.md
2012-10-18 18:02:45 -05:00

16 lines
314 B
Markdown

# Overview
In your project's Gruntfile, add a section named `jst` to the data object passed into `grunt.initConfig()`.
```js
grunt.initConfig({
jst: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
```