0.1.2 • Published 9 years ago

broccoli-beml v0.1.2

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

broccoli-beml

Plugin for processing BEML templates

How to use

Install broccoli-beml as a dev dependency:

npm install broccoli-beml --save-dev

Then, add it to your Brocfile.js:

var beml = require('broccoli-beml');

var htmls = beml('pathToFolder', {
    // These options are defaults and can be ignored
    srcDir: '/',
    destDir: '/',
    files: ['**/*.html'],
    elemPrefix: '__',
    modPrefix: '_',
    modDlmtr: '_'
  });
  
module.exports = htmls;