clear-folder
TypeScript icon, indicating that this package has built-in type declarations

5.0.0 • Public • Published

CircleCI

clear-folder

Clears the contents of a directory synchronously, for instance the build directory of your node package module.

Since version 4, clear-folder is an es-module. To use commonjs modules, use clear-folder version 3.x.x.

Safe deleting

Clear-folder is a cli app, intended to use safely in the scripts section of a package.json. It just uses the synchronous methods of the node.js fs module. The directory to clear must be inside the current directory. For brevity you may call this app with 'cf' instead of 'clear-folder'.

Usage

Add a number of names of folders to empty:

"scripts": {
    "...": "...",
    "prebuild": "cf folder1 folder2",
    "...": "..."
}

On the command line:

npx cf folder

In a script:

import cf from 'clear-folder'
...
const returnValue = cf(['folder1', 'folder2'])

In a script, return codes are available.

When folders were emptied, the folder count is returned. When no folders are specified, clear-folder prints an helpful message and returns -1. When one of folders points at or outside the current working directory, clear-folder aborts and returns -1.

Package Sidebar

Install

npm i clear-folder

Weekly Downloads

24

Version

5.0.0

License

ISC

Unpacked Size

6.91 kB

Total Files

6

Last publish

Collaborators

  • ovanderzee