Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/zeekay/rollup-plugin-shebang
- Owner: zeekay
- License: mit
- Created: 2017-03-08T08:20:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T06:02:48.000Z (over 6 years ago)
- Last Synced: 2024-09-18T17:09:19.446Z (about 2 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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