module-mapping-webpack-plugin

1.1.1 • Public • Published

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 ©️ 2016 Spartez, https://spartez.com

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i module-mapping-webpack-plugin

    Weekly Downloads

    113

    Version

    1.1.1

    License

    MIT

    Last publish

    Collaborators

    • marszall87
    • michal.jezierski