Socket
Book a DemoInstallSign in
Socket

@rollup-extras/plugin-externals

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup-extras/plugin-externals

Rollup plugin to declare dependencies external with reasonable defaults and customizable logic.

latest
Source
npmnpm
Version
1.2.2
Version published
Weekly downloads
14
-72%
Maintainers
1
Weekly downloads
 
Created
Source

plugin-externals

Rollup plugin to declare dependencies external with reasonable defaults and customizable logic.

Uses is-builtin-module to check for builtin modules.

Changelog

Installation

Using npm:

npm install --save-dev @rollup-extras/plugin-externals

Example

Normal usage:

import externals from '@rollup-extras/plugin-externals';

export default {
	input: 'src/index.js',

    output: {
        format: 'cjs',
        dir: 'dest'
    },

	plugins: [externals()],
}

Options

pluginName

Optional, string.

For debugging purposes, so many instances of a plugin can be differentiated in debugging output.

verbose

Optional, boolean.

Bumps loglevel so more messages go through the default logger filter.

external

Optional, (id: string, external: boolean) => boolean.

Default: id.includes('node_modules') || isBuiltinModule(id) || isOutsideProjectDirectory(id, importer)

Receives in external argument result of default function.

Configuration

type ExternalsPluginOptions = {
    pluginName?: string,
    verbose?: boolean,
    external?: (id: string, external: boolean) => boolean
};

Prior Art

License

MIT

Keywords

rollup-plugin

FAQs

Package last updated on 08 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts