# broccoli-underscore-template-compiler **Repository Path**: mirrors_salsify/broccoli-underscore-template-compiler ## Basic Information - **Project Name**: broccoli-underscore-template-compiler - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-09-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Broccoli Underscore Template Compiler ## Installation ```bash npm install -D broccoli-underscore-template-compiler ``` ## Example ```javascript var compileTemplates = require('broccoli-underscore-template-compiler'); var templatesTree = compileTemplates('templates', { description: 'TemplateCompiler (appTemplates)' }); ``` ## Input Format Given the following input: ```html ``` This plugin will produce an ES6 module equivalent to: ```javascript export var firstTemplate = _.extend(_.template('\n <%- message %>\n'), { metadata: { notes: 'This is my first template' } }); export default { firstTemplate: firstTemplate }; ``` Each `