metalsmith-webpack
v1.0.3
Published
A webpack plugin for Metalsmith
Downloads
27
Maintainers
Readme
metalsmith-webpack
A webpack plugin for Metalsmith.
Installation
npm install metalsmith-webpack
Usage
var webpack = require('metalsmith-webpack')
Metalsmith(__dirname)
.use(webpack(options))
.build()
Options
See the webpack configuration documentation for details.
Example
Metalsmith(__dirname)
.use(webpack({
context: path.resolve(__dirname, './src/js/'),
entry: './index.js',
output: {
path: '/js',
filename: 'bundle.js'
}
}))
.build()
See the tests for more examples.
Tests
$ npm test
License
MIT License, see LICENSE for details.