Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 703 Bytes

File metadata and controls

30 lines (21 loc) · 703 Bytes

hash-all-modules-plugin

npm version license

Hashs all remaining modules that do not get hashed via HashedModuleIdsPlugin

Installation

npm install --save-dev hash-all-modules-plugin

Usage

webpack.config.js

const webpack = require('webpack');
const HashAllModulesPlugin = require('hash-all-modules-plugin');

module.exports = {
  plugins: [
    new webpack.HashedModuleIdsPlugin(),
    new HashAllModulesPlugin()
  ]
}

License

This project is licensed under MIT.