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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.1
    81
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.1
    81
  • 1.1.0
    0

Package Sidebar

Install

npm i module-mapping-webpack-plugin

Weekly Downloads

63

Version

1.1.1

License

MIT

Last publish

Collaborators

  • marszall87
  • michal.jezierski