A Webpack plugin for the generation of styleguides using Ruby Hologram.
npm install ruby-hologram-webpack-pluginA simple webpack plugin for the generation of styleguides using Hologram.
Installing this couldn't be easier, add ruby-hologram-webpack-plugin using your favourite Node package manager.
e.g. npm install ruby-hologram-webpack-plugin
or using yarn yarn add ruby-hologram-webpack-plugin
Then instantiate it in your webpack plugin.
``
const RubyHologramPlugin = require('ruby-hologram-webpack-plugin')
module.exports = {
plugins: [
new RubyHologramPlugin({
config: '/path/to/configuration.yml'
})
]
}
`
That's it, you're done! You'll want to take a look at the Hologram documentation for examples on configuring Hologram.
- config -- Path to your configuration file. (e.g. /hologram.yml)binary
- -- Hologram binary to run. Useful if you're using something like Bundler to enforce version, or if it is outside of your path. (e.g. /usr/local/bin/hologram or bundle exec hologram`)
- Templated configuration, for injection of assets from webpack build.
- Hotloader support.