Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@bit/loader-excludes

MiguelCastillo92MIT1.0.2

bit-loader plugin for exluding modules from being processed

bit-bundler, bit-loader, bit-loader-plugin

readme

bit-loader-excludes

Greenkeeper badge

Plugin for specifying module names to be replaced with empty stub modules. Primary use case is for replacing node modules with empty ones.

compatible with

usage

var Bitbundler = require("bit-bundler");
var excludesPlugin = require("bit-loader-excludes");

var bitbundler = new Bitbundler({
  loader: {
    plugins: [
      excludesPlugin(["node-fetch"])
    ]
  }
});