Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1.01 KB

README.md

File metadata and controls

43 lines (38 loc) · 1.01 KB

simple-functional-loader

Use function as webpack loader option

npm version Build Status

install

npm install simple-functional-loader --save-dev

usage

// webpack.config.js
const { createLoader } = require('simple-functional-loader')
module.exports = {
  //...
  module: {
    rules: [
      {
        test: /\.html$/,
        use: [
          createLoader(function(source, map) { // must be an "ES5" function!
            // use "this" as loaderContext
            return processHTML(source, map) // process source code.
          })
        ]
      }
    ]
  }
}

createLoader will return UseEntry object:

{
  loader: string,
  options: object
}

license

MIT