1.0.0 • Published 7 years ago
metalsmith-ignore v1.0.0
metalsmith-ignore
A Metalsmith plugin to ignore files that match a pattern. Uses multimatch for matching.
Installation
$ npm install metalsmith-ignoreCLI Usage
Install via npm and then add the metalsmith-ignore key to your metalsmith.json plugins. The simplest case just ignores a single pattern:
{
"plugins": {
"metalsmith-ignore": "drafts/*"
}
}But you can also pass an array of patterns to ignore:
{
"plugins": {
"metalsmith-ignore": [
"drafts/*",
"unfinished/*"
]
}
}Javascript Usage
Pass the options to Metalsmith#use:
var ignore = require('metalsmith-ignore');
metalsmith.use(ignore('drafts/*'));You can also pass an array of patterns to ignore:
var ignore = require('metalsmith-ignore');
metalsmith.use(ignore([
'drafts/*',
'unfinished/*'
]));License
MIT