JSPM

  • Created
  • Published
  • Downloads 373098
  • Score
    100M100P100Q76825F

Extract text from bundle into a file.

Package Exports

  • extract-text-webpack-plugin
  • extract-text-webpack-plugin/loader
  • extract-text-webpack-plugin/loader.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extract-text-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

extract text plugin for webpack

Usage example with css

var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
    module: {
        loaders: [
            { test: /\.css$/, loaders: [
                "style-loader",
                ExtractTextPlugin.loader(),
                "css-loader"
            ]}
        ]
    },
    plugins: [
        new ExtractTextPlugin("styles.css")
    ]
}

API

new ExtractTextPlugin([id: string], filename: string, [options])
  • id TODO
  • filename the filename of the result file. May contain [name].
  • options TODO

There is also a loader function on the instance. You should use this if you have more than one ExtractTextPlugin.

License

MIT (http://www.opensource.org/licenses/mit-license.php)