esbuild-clean-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

esbuild-clean-plugin

npm build

An esbuild plugin to clean your build folder.

Installation

npm install esbuild-clean-plugin

Requirements

  • Node 14.15.0 (LTS) or later.
  • esbuild 0.11.18 or later.

Usage

import { build } from 'esbuild';
import { cleanPlugin } from 'esbuild-plugin-clean';

build({
  bundle: true,
  entryPoints: [path.resolve(__dirname, 'index.js')],
  metafile: true,
  outdir: path.resolve(__dirname, 'dist'),
  watch: true,
  plugins: [cleanPlugin({
      // Plugin options
  })],
});

Note: The metafile and outdir options must be set for the plugin to have any effect.

Options

  • dry (default false) - Run the plugin in dry mode, not deleting anything. Most useful together with the verbose option to see what would have been deleted.
  • initialCleanPatterns (default ['**/*']) - File patterns to remove on plugin setup, useful to clean the build directory before creating new files. Pass an empty array to disable it.
  • verbose (default false) - Print all files that have been deleted after each run.

Readme

Keywords

Package Sidebar

Install

npm i esbuild-clean-plugin

Weekly Downloads

341

Version

1.0.0

License

MIT

Unpacked Size

8.01 kB

Total Files

7

Last publish

Collaborators

  • jwilsson