1.0.0 • Published 7 years ago

emit-loader v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

emit-loader

Loader that emits raw entry files, without webpack wrapper

This loader is made for few very specific cases, so you probably don't need it.

Install

npm i emit-loader
# or
yarn add emit-loader

Usage

Add it to your use chain as the last loader.

// webpack.config.js

module.exports = {
  // ...
  modules: {
    loaders: {
      {
        use: [
          'emit-loader',
          // Other loaders
        ],
      },
    },
  },
};