Skip to content

florianb/metalsmith-del

Repository files navigation

metalsmith-del Build Status

Delete files and folders using globs.

Removes files and folders matching the passed globs, using Sindre Sorhus' multimatch. It also recognizes dot-files and -folders.

Install

$ npm install metalsmith-del

Usage

const metalsmith = require('metalsmith')
const del = require('metalsmith-del')

metalsmith(__dirname)
	.source('src/')
	.destination('build/')
	.del([ // Remove hidden folders and files
		'build/**/.*'
	])
	.build()

API

del(globs)

globs

Type: Array of string

Array of glob to match files and directories against. Matching files and directories are being removed from the destination-folder.

License

MIT © Florian Breisch

About

Delete files and folders using globs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published