write-json-webpack-plugin

1.1.0 • Public • Published

Write JSON Webpack Plugin

Build Status

Emits a JSON file that contains data passed through to it

Install

npm install --save-dev write-json-webpack-plugin

Configuration

// Add to your Webpack config file
var WriteJsonPlugin = require('write-json-webpack-plugin');
 
module.exports = {
  plugins: [new WriteJsonPlugin()]
};  

Options

Write JSON Webpack Plugin accepts three options, the object to write, the path and filename

new WriteJsonPlugin({
    object: [object]
    path: 'public',
    // default output is timestamp.json
    filename: 'timestamp.json',
    pretty: true // makes file human-readable (default false)
})

Readme

Keywords

none

Package Sidebar

Install

npm i write-json-webpack-plugin

Weekly Downloads

437

Version

1.1.0

License

MIT

Unpacked Size

3.78 kB

Total Files

3

Last publish

Collaborators

  • robertbg
  • davidfou