1.0.0 • Published 6 years ago

metalsmith-del v1.0.0

Weekly downloads
43
License
MIT
Repository
github
Last release
6 years ago

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

1.0.0

6 years ago

1.0.0-2

6 years ago

1.0.0-1

6 years ago