grunt-header

1.1.0 • Public • Published

grunt-header Build Status

Add a header to files

Install

$ npm install --save-dev grunt-header

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
 
grunt.initConfig({
    info: 'header text',
    header: {
        dist: {
            options: {
                text: '<%= info %>'
            },
            files: {
                'dist/main.js': 'src/main.js'
            }
        }
    }
});
 
grunt.registerTask('default', ['header']);

Options

text

Type: string

Text to be prepended to files.

License

MIT © Sindre Sorhus

Dependencies (1)

Dev Dependencies (5)

Package Sidebar

Install

npm i grunt-header

Weekly Downloads

660

Version

1.1.0

License

MIT

Last publish

Collaborators

  • sindresorhus