pug-include-glob

0.4.3 • Public • Published

Build Status

pug-include-glob

Use glob patterns in your Pug include directives.

Installation

$ npm install --save pug-include-glob

Usage

const pugIncludeGlob = require('pug-include-glob');
const pug = require('pug');

let html = pug.renderFile('path/to/template.pug', {
  plugins: [ pugIncludeGlob({ /* options */ }) ]
});

Express

res.render('view_name', { plugins: [ pugIncludeGlob({ /* options */ }) ] })

Gulp

gulp.src(src)
  .pipe(pug({ plugins: [ pugIncludeGlob({ /* options */ }) ] }))
  .pipe(gulp.dest(dest));

Options

  • glob - Options object passed to node-glob methods. See node-glob for details.
  • ignore - Files that should not be checked by this plugin. Checking every file is time expensive so excluding files where possible is likely to improve performance.

License

MIT © Jack Conway

/pug-include-glob/

    Package Sidebar

    Install

    npm i pug-include-glob

    Weekly Downloads

    566

    Version

    0.4.3

    License

    MIT

    Unpacked Size

    4.95 kB

    Total Files

    4

    Last publish

    Collaborators

    • jgconway