Creates manifest json file based you config
npm install webpack-extension-manifest-plugin> Creates manifest json file based on you config
![node]()

``bash`
npm i -D webpack-extension-manifest-plugin
> Note: This project is compatible with node v10+
baseManifest.js
`js`
export default {
name: 'my manifest'
};
webpack.config.js
`js
import WebpackExtensionManifestPlugin from 'webpack-extension-manifest-plugin';
module.exports = {
plugins: [
new WebpackExtensionManifestPlugin({
config: {
base: './baseManifest.js',
extend: {description: 'my description'}
},
pkgJsonProps: [
'version'
]
})
]
};
`{name: 'my manifest', description: 'my description', version: '0.0.0'}
Create manifest.json with extend configs
Default: {}
Description: Can take a ready-made configuration or filename (to fetch from) for the manifest file, or a set of parameters base, extend (both of which can be a filename or an object) $3
Type: Boolean
Default: false
Description: Controls if the output should be minified $3
Type: Array of strings`