Socket
Socket
Sign inDemoInstall

jade-brunch-static

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jade-brunch-static

Compile static jade files with brunch.


Version published
Weekly downloads
267
increased by55.23%
Maintainers
1
Weekly downloads
 
Created
Source

Release

jade-brunch-static

Compile static jade files with brunch.

jade-brunch-static is a processor for html-brunch-static, a brunch plugin designed to handle static html files. jade-brunch-static can convert jade files into static html files with html-brunch-static's support for layouts and partial views.

If you're looking for support for the latest version of jade, now called "pug", check out pug-brunch-static.

Installation

jade-brunch-static depends on html-brunch-static, which also depends on brunch-static, so, you will need to install all three. The recommended method is via npm:

npm install --save-dev brunch-static html-brunch-static jade-brunch-static

Or manually:

  • Add "brunch-static": "x.y.z" to package.json
  • Add "html-brunch-static": "x.y.z" to package.json
  • Add "jade-brunch-static": "x.y.z" to package.json
  • Run npm install
  • Alternatively, you may use the latest git version with:
    • "brunch-static": "git+ssh://git@github.com:bmatcuk/brunch-static"
    • "html-brunch-static": "git+ssh://git@github.com:bmatcuk/html-brunch-static"
    • "jade-brunch-static": "git+ssh://git@github.com:bmatcuk/jade-brunch-static"

Configuration

Add jade-brunch-static to your list of html-brunch-static processors:

exports.config =
  ...
  plugins:
    static:
      processors: [
        require('html-brunch-static') {
          processors: [
            require('jade-brunch-static') {
              fileMatch: ...
              fileTransform: ((filename) -> ...)
              ...
            }
          ]
        }
      ]

Most options passed to jade-brunch-static are passed, verbatim, to jade, with the exception of:

  • fileMatch (default: /\.static\.jade$/)

    fileMatch is an anymatch that is used to determine which files will be handled by this processor. As an anymatch, it may be a string with globs, a regex, or a function that takes a filename and returns true if it should be handled, or false otherwise. The default will match files that end in .static.jade.

  • fileTransform (default: (filename) -> filename.replace(/static\.jade$/, 'html'))

    fileTransform converts the input filename into an html filename. It takes a filename as input and returns the new filename with the html extension. If you set the fileMatch property above, you'll probably need to set this option as well to ensure that your output files end with the html extension.

Keywords

FAQs

Package last updated on 07 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc