assemble-helper-assets-manifest

0.4.0 • Public • Published

Assemble Helper Assets Manifest

Build Status codecov dependencies Status devDependencies Status

This package provides a custom helper for Handlebars that Assemble can use.

Installation

npm install assemble-helper-assets-manifest --save

Setup with Assemble

After you install this package, you need to tell Assemble about it. You do that by adding the package name to the helpers array in your config.

You also need to specify assetsManifest so that the helper knows where to look for your assets manifest file.

Example config

assemble: {
  options: {
    helpers: [ 'assemble-helper-assets-manifest' ],
    manifestPath: path.join(__dirname, 'manifest.json')
  }
}

Setup with Handlebars

var Handlebars = require('handlebars');
var AssetsManifestHelper = require('assemble-helper-assets-manifest');
 
AssetsManifestHelper.register(Handlebars, {
  manifestPath: path.join(process.cwd(), 'public', 'assets', 'manifest.json'),
  prefix: '/assets/'
});

Using the Handlebars helper

<img src="{{assetsManifest 'images/photo.jpg'}}" />
{{#each images}}
  <img src="{{assetsManifest this.src}}" />
{{/each}}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.4.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.4.0
    2
  • 0.3.1
    1
  • 0.3.0
    0

Package Sidebar

Install

npm i assemble-helper-assets-manifest

Weekly Downloads

3

Version

0.4.0

License

MIT

Unpacked Size

6.85 kB

Total Files

5

Last publish

Collaborators

  • webdeveric