NathanKleekamp / metalsmith-ignore

A Metalsmith plugin to ignore files that match a pattern.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

metalsmith-ignore

A Metalsmith plugin to ignore files that match a pattern.

Installation

$ npm install metalsmith-ignore

CLI 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

About

A Metalsmith plugin to ignore files that match a pattern.


Languages

Language:JavaScript 93.8%Language:Makefile 6.2%