0.1.0 • Published 1 year ago

create-dir-webpack-plugin v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

create-dir-webpack-plugin

Based on make-dir-webpack-plugin by Monokh but Webpack 5 compatible.

Make directories at webpack compilation. Useful when another webpack plugin depends on a directory existing.

Installation

npm install create-dir-webpack-plugin --save-dev

Examples

var CreateDirPlugin = require('create-dir-webpack-plugin');

module.exports = {
  ...
  plugins: [
    new CreateDirPlugin([
      './dist/folder1',
      './dist/folder2'
    ])
  ]
};