UNPKG

chunks-2-json-webpack-plugin

Version:

Plugin for webpack 4, that outputs build files to JSON

15 lines (13 loc) 276 B
const Chunks2JsonPlugin = require('../../../'); const TEST_NAME = 'multiple-entries'; module.exports = { entry: { one: './one-entry.js', two: './two-entry.js', }, plugins: [ new Chunks2JsonPlugin({ outputDir: `./test/js/${TEST_NAME}` }), ], };