0.1.0 • Published 11 years ago

grunt-template-file v0.1.0

Weekly downloads
26
License
-
Repository
github
Last release
11 years ago

grunt-template-file

Grunt task which replaces file with templated version defined by options. Useful for compile time definitions

#Usage:

Requires a file and an options object with a data object inside. 
The data object contains name-value pairs. e.g.
    file : "some/file.js",
    options : {
        data: {
            foo : "bar"
        }
    }

this will tepmlate '<%= foo %>' into 'bar' in the file some/file.js