1.0.3 • Published 8 years ago

metalsmith-webpack v1.0.3

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

metalsmith-webpack

Build Status

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.