grunt-strip-shebang
v1.0.0
Published
Grunt plugin to remove the shebang from your files.
Downloads
5
Maintainers
Readme
grunt-strip-shebang
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