component-webpack-plugin
v0.2.1
Published
Use components with webpack
Downloads
91
Keywords
Readme
component for webpack
Usage
see an example here: webpack/webpack/examples/component
var ComponentPlugin = require("component-webpack-plugin");
module.exports = {
plugins: [
new ComponentPlugin();
]
}
Advanced usage
var ComponentPlugin = require("component-webpack-plugin");
module.exports = {
plugins: [
new ComponentPlugin({
// Load xyz field in component.json
xyz: true,
// This is equal to: xyz: "[file]"
// Load xyz field with the xyz-loader
xyz: "!xyz-loader![file]",
// This is default:
// styles: "!style-loader!css-loader![file]"
}, [
// Lookup paths
"component"
]);
]
}
License
MIT (http://www.opensource.org/licenses/mit-license.php)