Skip to content
This repository was archived by the owner on Dec 22, 2020. It is now read-only.

[DEPRECATED] A loader that returns an empty module (can still be used for webpack 4).

License

Notifications You must be signed in to change notification settings

webpack-contrib/null-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

22e73a4 · Dec 22, 2020

History

25 Commits
Oct 13, 2020
Oct 9, 2020
Apr 15, 2020
Apr 15, 2020
Jun 5, 2019
Jun 5, 2019
Apr 5, 2018
Apr 23, 2019
Jun 5, 2019
Apr 15, 2020
Oct 9, 2020
Apr 5, 2018
Dec 22, 2020
Apr 15, 2020
May 15, 2019
May 15, 2019
Apr 15, 2020
Oct 9, 2020
Oct 9, 2020

Repository files navigation

DEPREACTED

https://webpack.js.org/configuration/resolve/#resolvealias. Setting resolve.alias.package to false will tell webpack@5 to ignore a module.


npm node deps tests chat size

null-loader

A webpack loader that returns an empty module.

One use for this loader is to silence modules imported by a dependency. Say, for example, your project relies on an ES6 library that imports a polyfill you don't need, so removing it will cause no loss in functionality.

Getting Started

To begin, you'll need to install null-loader:

$ npm install null-loader --save-dev

Then add the loader to your webpack config. For example:

// webpack.config.js
const path = require('path');

module.exports = {
  module: {
    rules: [
      {
        // Test for a polyfill (or any file) and it won't be included in your
        // bundle
        test: path.resolve(__dirname, 'node_modules/library/polyfill.js'),
        use: 'null-loader',
      },
    ],
  },
};

And run webpack via your preferred method.

Contributing

Please take a moment to read our contributing guidelines if you haven't yet done so.

CONTRIBUTING

License

MIT

About

[DEPRECATED] A loader that returns an empty module (can still be used for webpack 4).

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published