JSPM

generate-json-webpack-plugin

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 38766
  • Score
    100M100P100Q143132F
  • License MIT

Webpack plugin to generate a custom JSON asset

Package Exports

  • generate-json-webpack-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (generate-json-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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"
}