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
- Host: GitHub
- URL: https://github.com/devlato/grunt-file-append
- Owner: devlato
- License: mit
- Created: 2014-07-14T14:43:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-14T15:14:44.000Z (almost 12 years ago)
- Last Synced: 2025-01-22T23:26:58.590Z (over 1 year ago)
- Language: CoffeeScript
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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']
```