Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@decodeapps/webpack-memory-plugin

FallenAngel975.2kISC1.0.1

Webpack plugin, which showws the amount of RAM used after compilation

memory, ram, webpack, utilization, megabytes

readme

🐏 Webpack Memory Plugin

Displays amount of RAM used after the webpack compilation

Installation

In case of npm npm i -D @decodeapps/webpack-memory-plugin

In case of yarn: yarn add -D @decodeapps/webpack-memory-plugin

Example

Add following to the webpack.config.js:

const WebpackMemoryPlugin = require('@decodeapps/webpack-memory-plugin');
// other plugins

module.exports = {
  // other statements
  plugins: [
    new WebpackMemoryPlugin()
  ]
}