rollup-plugin-preserve-shebangs
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

rollup-plugin-preserve-shebangs

A Rollup plugin that preserves shebangs (#!/usr/bin/env node) in output files

Why?

Package executables (under bin in package.json) need shebang #!/usr/bin/env node at the top of the file.

With that line, rollup errors:

Error: Unexpected character '#'

This plugin removes the shebang before compilation, and restores it before writing the file.

Install

npm i -D rollup-plugin-preserve-shebangs
# or, with yarn
yarn add -D rollup-plugin-preserve-shebangs

Usage

// rollup.config.js
 
const { preserveShebangs } = require('rollup-plugin-preserve-shebangs');
 
module.exports = {
  // ...
  plugins: [
    // ...
    preserveShebangs(),
  ],
};

Readme

Keywords

none

Package Sidebar

Install

npm i rollup-plugin-preserve-shebangs

Weekly Downloads

10,267

Version

0.2.0

License

MIT

Unpacked Size

4.27 kB

Total Files

8

Last publish

Collaborators

  • elado