Name
Last commit
Last update
..
.npmignore work yui
LICENSE work yui
README.md work yui
index.js work yui
package.json work yui

npm deps chat

Exports Loader

Exports variables from inside the file by appending `exports[...] = ...` statements..

Install

npm i exports-loader --save

Usage

require("exports-loader?file,parse=helpers.parse!./file.js");
// adds below code the the file's source:
//  exports["file"] = file;
//  exports["parse"] = helpers.parse;

require("exports-loader?file!./file.js");
// adds below code the the file's source:
//  module.exports = file;

Documentation: Using loaders

Maintainers

Juho Vepsäläinen Joshua Wiens Kees Kluskens Sean Larkin