npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

grunt-footer

1.1.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:188
$ npm install grunt-footer
DailyWeeklyMonthlyYearly

grunt-footer Build Status

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