build-hash-webpack-plugin
Webpack plugin that emits a json file contaning the build hash.
Why Is This Useful?
When working with Webpack you might want to generate your build hash.
This plug-in outputs a json file contaning a single attribute hash wich is the build hash.
Example output:
The output is a JSON object in the form:
Install
yarn add -D build-hash-webpack-plugin
Configuration
In your webpack config include the plug-in. And add it to your config:
;// ...moduleexports = // .... plugins:
Options
You can pass the following options:
filename
Optional. build-hash.json
by default.
Name for the created json file.
filename: 'build-hash.json'