0.0.3-alpha • Published 5 years ago

rollup-plugin-external-paths v0.0.3-alpha

Weekly downloads
35
License
MIT
Repository
github
Last release
5 years ago

rollup-plugin-exclude-paths

Let you use paths in exclude.

Setup

In your rollup config

import excludePaths from 'rollup-plugin-exclude-paths';


export default {
    entry: './app.js',
    format: 'cjs',
    dest: 'public/app.min.js',
    plugins: [ excludePaths({
      dir: './src', // exclude all the ./src path
    }) ],
};

Options

dir '' | ['']

An array of paths that the plugin should exclude from resolution.

Example: ['./src/no-chunk1', 'src/no-chunk2']