1.0.0 • Published 9 years ago

grunt-strip-shebang v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

grunt-strip-shebang Build Status

Grunt plugin to remove the shebang from your files.

Installation

$ npm install --save-dev grunt-strip-shebang

Usage

require('load-grunt-tasks')(grunt);

grunt.initConfig({
	stripShebang: {
		dist: {
			files: {
				'dist/main.sh': 'src/main.sh'
			}
		}
	}
});

grunt.registerTask('default', ['stripShebang']);

License

MIT © Arthur Verschaeve