0.1.1 • Published 7 years ago

@sparkbox/if-prod v0.1.1

Weekly downloads
27
License
ISC
Repository
github
Last release
7 years ago

ifProd

CircleCI

A hbs helper that renders a block if NODE_ENV=production.

Usage

Register the partial with handlebars, typically like this:

const hbs = require('handlebars');
const ifProd = require('@sparkbox/if-prod');

hbs.registerHelper('ifProd', ifProd);

Once registered the helper will be available to use in any hbs file like so:

{{#ifProd}}
  <script src="src/prod-script.js"></script>
{{/ifProd}}