module-mapping-webpack-plugin

Webpack plugin for mapping modules to different files

Usage no npm install needed!

<script type="module">
  import moduleMappingWebpackPlugin from 'https://cdn.skypack.dev/module-mapping-webpack-plugin';
</script>

README

Module Mapping Webpack Plugin Build Status

This is a webpack plugin for mapping modules onto different files.

Installation

Install the plugin with npm:

$ npm install module-mapping-webpack-plugin --save-dev

Usage

// webpack.config.js
const webpack = require('webpack');
const ModuleMappingPlugin = require('module-mapping-webpack-plugin');

module.exports = {
  // ...
  plugins: [
    new ModuleMappingPlugin({
      './foo.js': './foo-spartez.js',
      // ...
    })
  ]
};

// foo.js
export default () => console.log('Hello World!');

// foo-spartez.js
export default () => console.log('Hello Spartez!');

// index.js
import foo from './foo';
foo(); // → 'Hello Spartez!';

License

The MIT License

Copyright :copyright: 2016 Spartez, https://spartez.com