# path-order-webpack-plugin

[Webpack](http://webpack.github.io/) plugin that sort modules and chunks by
file path

## Installation

```
npm install --save-dev path-order-webpack-plugin
```

## Usage

In config file:

``` javascript
var WebpackPathOrderPlugin = require('path-order-webpack-plugin');

// ...
  plugins: [
    new WebpackPathOrderPlugin(),
  ]
// ...
```

