Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 920 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 920 Bytes

Precompile Handlebars templates for Ember.js

Note: New projects should use ember-cli. This package is available for legacy reasons, but is no longer being actively maintained. If you rely on this package and would like to help with maintenance, please file an issue.

Install

npm install -g ember-precompile

Usage

This module has a similar interface to the Handlebars precompiler

ember-precompile template... [-f OUTPUT_FILE]

If output file is omitted, the compiled template(s) will be printed to stdout.

The template's name (in the Ember.TEMPLATES object) is created by transforming the original filename:

  1. the .handlebars or .hbs file extension is stripped
  2. any remaining . characters are replaced by / to support the nested templates used by the new Ember Router