Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

htmlbars-comment-redactor

mikrostew43MIT0.0.4

ember addon for redacting html comments in handlebars templates

ember-addon

readme

Build Status

htmlbars-comment-redactor

This addon redacts the contents of any HTML comments in you handlebars templates.

So a template like this:

<div id="{{someVar}}">
  <!-- Here is a witty comment -->
</div>

renders as:

<div id="whatever">
  <!--[REDACTED]-->
</div>