Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-pug

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-pug

`broccoli-pug` compiles or renders `pug` templates.

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

broccoli-pug

broccoli-pug compiles or renders pug templates.

Because of Broccoli's design, this plugin is unable to resolve relative imports to files outside of its input nodes. The workaround for this is to move all relative imports into the input nodes (e.g. using broccoli-funnel and then broccoli-merge). Note that imports must be in the same input node; it is not sufficient to simply include imports as a separate input node. You can do this by combining nodes using broccoli-merge.

Usage

var pug = require('broccoli-pug');
var html = pug([inputTree1, inputTree2], {
  render: true
  pugOptions: {
    // ...
  }
});

pug(inputs, options)

inputs is an array of input Broccoli nodes.

options is an optional object specifying plugin options.

options.render is a boolean. If true, broccoli-pug will render templates to HTML rather than compiling to a JS function.

options.pugOptions specifies options for the pug compiler. It is passed directly to the compiler.

Contributing

I would love if anybody could contribute some tests to this repository. Feel free to leave PRs, test or otherwise.

License

Copyright 2016 Lehao Zhang. Released to the general public under the terms of the ISC license.

Keywords

FAQs

Package last updated on 17 Jul 2016

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