Sha256: 95d676844cf24626ccafc0f2aff2cc7dd6e2bd93059cf8a3e354312c9ded01ae

Contents?: true

Size: 1.54 KB

Versions: 26

Compression:

Stored size: 1.54 KB

Contents

'use strict';
const path = require('path');
const globby = require('globby');
const isPathCwd = require('is-path-cwd');
const isPathInCwd = require('is-path-in-cwd');
const pify = require('pify');
const rimraf = require('rimraf');
const pMap = require('p-map');

const rimrafP = pify(rimraf);

function safeCheck(file) {
	if (isPathCwd(file)) {
		throw new Error('Cannot delete the current working directory. Can be overridden with the `force` option.');
	}

	if (!isPathInCwd(file)) {
		throw new Error('Cannot delete files/folders outside the current working directory. Can be overridden with the `force` option.');
	}
}

const del = (patterns, options) => {
	options = Object.assign({}, options);

	const {force, dryRun} = options;
	delete options.force;
	delete options.dryRun;

	const mapper = file => {
		if (!force) {
			safeCheck(file);
		}

		file = path.resolve(options.cwd || '', file);

		if (dryRun) {
			return file;
		}

		return rimrafP(file, {glob: false}).then(() => file);
	};

	return globby(patterns, options).then(files => pMap(files, mapper, options));
};

module.exports = del;
// TODO: Remove this for the next major release
module.exports.default = del;

module.exports.sync = (patterns, options) => {
	options = Object.assign({}, options);

	const {force, dryRun} = options;
	delete options.force;
	delete options.dryRun;

	return globby.sync(patterns, options).map(file => {
		if (!force) {
			safeCheck(file);
		}

		file = path.resolve(options.cwd || '', file);

		if (!dryRun) {
			rimraf.sync(file, {glob: false});
		}

		return file;
	});
};

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/del/index.js
disco_app-0.18.0 test/dummy/node_modules/del/index.js
disco_app-0.18.2 test/dummy/node_modules/del/index.js
disco_app-0.16.1 test/dummy/node_modules/del/index.js
disco_app-0.15.2 test/dummy/node_modules/del/index.js
disco_app-0.18.4 test/dummy/node_modules/del/index.js
disco_app-0.18.1 test/dummy/node_modules/del/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/del/index.js
disco_app-0.14.0 test/dummy/node_modules/del/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/del/index.js
tang-0.2.1 spec/tang_app/node_modules/del/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/del/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/del/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/del/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/del/index.js
tang-0.2.0 spec/tang_app/node_modules/del/index.js
tang-0.1.0 spec/tang_app/node_modules/del/index.js
tang-0.0.9 spec/tang_app/node_modules/del/index.js
enju_library-0.3.8 spec/dummy/node_modules/del/index.js
jester-data-8.0.0 node_modules/del/index.js