Enables ES 2015 imports for Blaze templates using the <component>
tag.
Normal Blaze template are unaffected (you can use both in the same project).
meteor remove blaze-html-templates
meteor add nathantreid:blaze-modules
component1.html
component2.html
component1.js
import component1 from './component1.html';
import component2 from './component2.html';
component1.helpers{{ component2 });