
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
@open-tech-world/rollup-plugin-clean
Advanced tools
A rollup plugin to remove files and folders using glob patterns.
A Rollup Plugin to clean files and directories using glob patterns.
Internally it uses open-tech-word/node-rm for removing files & directories. Refer it for supported glob patterns & more info.
Using Yarn
yarn add --dev @open-tech-world/rollup-plugin-clean
Using npm
npm install --save-dev @open-tech-world/rollup-plugin-clean
import { clean } from '@open-tech-world/rollup-plugin-clean';
clean(patterns: string | string[], options?: Partial<IOptions>)
Options:
| Name | Type | Default | Description |
|---|---|---|---|
| dot | boolean | true | If false, it disables removing files & directories that begin with a "."(dot) character. |
| hook | string | 'buildStart' | A Rollup hook to run the plugin. Refer the Rollup docs for available hooks. |
| dry | boolean | false | If true, it does not remove anything, instead, it console logs what would be removed. |
It removes all files & directories inside the build dir.
// rollup.config.js
import { clean } from '@open-tech-world/rollup-plugin-clean';
export default {
entry: 'src/index.js',
output: {
file: 'build/index.js',
format: 'esm'
}
plugins: [
clean('build/*')
]
};
It removes the dist dir.
// rollup.config.js
import { clean } from '@open-tech-world/rollup-plugin-clean';
export default {
entry: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'cjs'
}
plugins: [
clean('dist')
]
};
It supports multiple patterns.
It cleans the build dir & ignores the logo.png file inside the assets dir.
// rollup.config.js
import { clean } from '@open-tech-world/rollup-plugin-clean';
export default {
entry: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'cjs'
}
plugins: [
clean(['build/*', '!**/assets/logo.png'])
]
};
It runs the plugin in the buildEnd Rollup Hook.
// rollup.config.js
import { clean } from '@open-tech-world/rollup-plugin-clean';
export default {
entry: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'cjs'
}
plugins: [
clean('build/*', { hook: 'buildEnd' })
]
};
Copyright (c) 2021, Thanga Ganapathy (MIT License).
FAQs
A rollup plugin to remove files and folders using glob patterns.
We found that @open-tech-world/rollup-plugin-clean demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.