grunt-footer
v1.1.0
Published
Add a footer to files
Downloads
515
Maintainers
Readme
grunt-footer
Add a footer to files
Install
$ npm install --save-dev grunt-footer
Usage
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
grunt.initConfig({
info: 'footer text',
footer: {
dist: {
options: {
text: '<%= info %>'
},
files: {
'dist/main.js': 'src/main.js'
}
}
}
});
grunt.registerTask('default', ['footer']);
Options
text
Type: string
Text to be appended to files.
License
MIT © Sindre Sorhus