nlfurniss / rollup-preserve-directives

This is a rollup plugin that helps preserve shebang and string directives.

Home Page:https://npmjs.com/package/rollup-preserve-directives

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rollup-preserve-directives

A rollup plugin helps preserving shebang and string directives in your code.

Install

npm install rollup-preserve-directives

Usage

import preserveDirectives from 'rollup-preserve-directives'

export default {
  input: './src/index.js',
  output: {
    file: './dist/index.js',
    format: 'cjs'
  },
  plugins: [
    preserveDirectives()
  ]
}

Inter-plugin-communication

This plugin exposes the result of its directives information of current file for other plugins to use. You can access it via this.getModuleInfo or the moduleParsed hook.

// `meta` property info
{
  preserveDirectives: {
    directives: string[]
    shebang: string
  }
}

License

MIT

About

This is a rollup plugin that helps preserve shebang and string directives.

https://npmjs.com/package/rollup-preserve-directives


Languages

Language:TypeScript 97.6%Language:JavaScript 2.4%