rollup-plugin-node

0.2.1 • Public • Published

npm

rolup-plugin-node

🍣 A Rollup plugin which improve rollup usage with nodejs projects

This plugin declares all nodejs native deps in external and try to remove require/import for all unknown others. It's solve (most of the time) optional import from an external library that rollup actually don't manage very well ;).

Requirements

This plugin requires an LTS Node version (v12.0.0+) and Rollup v1.20.0+.

Install

Using npm:

npm install rollup-plugin-node --save-dev

Usage

Create a rollup.config.js configuration file and import the plugin:

import rollupPluginNode from 'rollup-plugin-node';

export default {
  input: 'src/index.js',
  output: {
    dir: 'output',
    format: 'cjs'
  },
  plugins: [rollupPluginNode()]
};

That's all!!

Tips: put it after commonjs node

Additional options

{
    additionalOptionalDeps: {
        'somethingVeryUsefull.node': './addon',
        'partial/path/somethingVeryUsefullWithPartialPath.node': './addon',
    }
}
  • additionalOptionaDeps : : A map of filename and destination (relative to the output)

Readme

Keywords

Package Sidebar

Install

npm i rollup-plugin-node

Weekly Downloads

11

Version

0.2.1

License

MIT

Unpacked Size

11.6 kB

Total Files

4

Last publish

Collaborators

  • aurelhann