1. on-build-webpack
Webpack plugin that gives ability to add callback after build
on-build-webpack
Package: on-build-webpack
Created by: kossnocorp
Last modified: Wed, 22 Jun 2022 21:24:25 GMT
Version: 0.1.0
License: MIT
Downloads: 36,732
Repository: https://github.com/kossnocorp/on-build-webpack

Install

npm install on-build-webpack
yarn add on-build-webpack

on-build-webpack

Webpack plugin that gives ability to add callback
after build.

Installation

npm install --save-dev on-build-webpack

Usage

In config file:

 var WebpackOnBuildPlugin = require('on-build-webpack');

// ...
  module: {
    plugins: [
      new WebpackOnBuildPlugin(function(stats) {
        // Do whatever you want...
      }),
    ]
  },
// ...

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin