Skip to content

Discovers your template helpers and registers them with Handlebars.

License

Notifications You must be signed in to change notification settings

timdp/metalsmith-discover-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metalsmith-discover-helpers

npm Dependencies JavaScript Standard Style

Discovers your template helpers and registers them with Handlebars.

Usage

In metalsmith.json:

{
  "plugins": {
    "metalsmith-discover-helpers": {
      "directory": "helpers",
      "pattern": "/\\.js$/"
    }
  }
}

Using Metalsmith's API:

var discoverHelpers = require('metalsmith-discover-helpers')

require('metalsmith')(__dirname)
  .use(discoverHelpers({
    directory: 'helpers',
    pattern: /\.js$/
  }))
  .build()

The displayed values for directory and pattern are the defaults. If you don't need to change them, you can just leave them out.

Author

Tim De Pauw

License

MIT

About

Discovers your template helpers and registers them with Handlebars.

Resources

License

Stars

Watchers

Forks

Packages

No packages published