Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 916 Bytes

readme.md

File metadata and controls

41 lines (26 loc) · 916 Bytes

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