1.0.1 • Published 8 years ago

webpack-superalias v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

webpack-superalias

Like webpack's default alias, but more powerful.

npm install --save-dev webpack-superalias

It's a plugin that will transform any request using a user-specified function.

new SuperAlias(path => path)

Note that paths are either an absolute path, or an absolute path with a load of ?loaders on the end.

To replace all files that have an extension .m.css with .css, you can use the setup below.

// webpack.config.js
const SuperAlias = require('webpack-superalias');

module.exports = {
  ...
  plugins: [
    new SuperAlias(path => path.replace(/\.m\.css($|\?)/, '.css'));
  ]
};
1.0.1

8 years ago

1.0.0

8 years ago