Skip to content

boxi79/generate-json-webpack-plugin

 
 

Repository files navigation

generate-json-webpack-plugin

npm version Build Status Greenkeeper badge

Webpack plugin to generate a custom JSON asset

Installation

npm install generate-json-webpack-plugin

Usage

// webpack.config.js
const GenerateJsonPlugin = require('generate-json-webpack-plugin');

module.exports = {
  // ...
  plugins: [
    // ...
    new GenerateJsonPlugin('my-file.json', {
      foo: 'bar'
    })
  ]
  // ...
};

This will create a file my-file.json in webpack's output directory, with contents:

{"foo":"bar"}

You may optionally pass 'replacer' and 'space' arguments as the 3rd and 4th arguments, which will be passed to JSON.stringify to customize the JSON output:

new GenerateJsonPlugin(
  'my-file.json',
  { foo: 'bar', one: 'two' },
  (key, value) => {
    if (value === 'bar') {
      return 'baz'; 
    }
    return value;
  },
  2
)

my-file.json will contain:

{
  "foo": "baz",
  "one": "two"
}

About

Webpack plugin to generate a custom JSON asset

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%