An open API service indexing awesome lists of open source software.

https://github.com/devlato/grunt-file-append

grunt-file-append remastered
https://github.com/devlato/grunt-file-append

Last synced: about 1 year ago
JSON representation

grunt-file-append remastered

Awesome Lists containing this project

README

          

grunt-file-append
=================

grunt-file-append remastered

Here is typical Gruntfile code:

```coffeescript
module.exports = (grunt) ->

grunt.initConfig
file_append:
options:
files: [{
source: '' # path
append: '' # data to append
prepend: '' # data to prepend
}]

grunt.loadTasks 'tasks'
grunt.registerTask 'default', ['file_append']
```