rollup-plugin-preserve-shebang

1.0.1 • Public • Published

rollup-plugin-preserve-shebang

Automatically preserve a shebang in your entry file.

If you're building CLI's with Rollup, this will fix your npm bin being broken :)

Installation

npm i -D rollup-plugin-preserve-shebang

Usage

import shebang from 'rollup-plugin-preserve-shebang';
 
export default {
    plugins: [
        shebang()
    ]
}
shebang({
    // Override the entry. By default, uses `input` from config:
    entry: path.resolve(process.cwd(), 'src/foo.js'),
 
    // You can also set it manually if you want, which will always prepend it:
    shebang: '#!/usr/bin/env node'
})

License

MIT

Package Sidebar

Install

npm i rollup-plugin-preserve-shebang

Weekly Downloads

4,075

Version

1.0.1

License

MIT

Unpacked Size

3.59 kB

Total Files

4

Last publish

Collaborators

  • developit