1.0.1 • Published 8 years ago

hologram-webpack-plugin v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

hologram-webpack-plugin

Very simple webpack plugin to init and run node-hologram on the 'done' step.

To use, install from npm and add the plugin to webpack config, passing any hologram options as required.

npm i hologram-webpack-plugin
var HologramPlugin = require('hologram-webpack-plugin');

module.exports = {
    plugins: [
        new HologramPlugin({
            root: __dirname,
            title: "My Style Guide"
        });
    ]
};