Skip to content

spartez/module-mapping-webpack-plugin

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
e2e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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