exports loader module for webpack
This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.
To begin, you'll need to install exports-loader:
$ npm install exports-loader --save-dev
Then add the loader to the desired require calls. For example:
require('exports-loader?file,parse=helpers.parse!./file.js');
// adds the following code to the file's source:
//  exports['file'] = file;
//  exports['parse'] = helpers.parse;
require('exports-loader?file!./file.js');
// adds the following code to the file's source:
//  module.exports = file;
require('exports-loader?[name]!./file.js');
// adds the following code to the file's source:
//  module.exports = file; And run webpack via your preferred method.
Please take a moment to read our contributing guidelines if you haven't yet done so.
    © JS Foundation and other contributors
Licensed under the Creative Commons Attribution License 4.0.
    https://v4.webpack.js.org/loaders/exports-loader