0.0.1 • Published 7 years ago

webpack-component-plugin v0.0.1

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

webpack-component-plugin

usage

const componentPlugin = require('webpack-component-plugin');

module.exports = {
  plugins  : [
    new componentPlugin({
    srcPath : path.join(__dirname, 'src'),
    builtJSPath : path.join(__dirname, 'assets/js'),
    builtCSSPath : path.join(__dirname, 'assets/css'),
    builtTemplatePath : path.join(__dirname, '/templates'),
    }),
  ],
}