Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zeekay/rollup-plugin-shebang

Rollup.js plugin for adding unix-style shebang to your bundle.
https://github.com/zeekay/rollup-plugin-shebang

Last synced: about 1 month ago
JSON representation

Rollup.js plugin for adding unix-style shebang to your bundle.

Awesome Lists containing this project

README

        

# rollup-plugin-shebang

Rollup.js plugin which adds a unix-style shebang.

## Installation

```bash
npm install --save-dev rollup-plugin-shebang
```

## Usage

Add the following code to your project's `rollup.config.js`:

```js
import shebang from 'rollup-plugin-shebang';

export default {
entry: 'index.js',
plugins: [
shebang()
]
};
```

## License

MIT