1.0.3 • Published 10 years ago
metalsmith-webpack v1.0.3
metalsmith-webpack
A webpack plugin for Metalsmith.
Installation
npm install metalsmith-webpackUsage
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 testLicense
MIT License, see LICENSE for details.
