Client-side template compiling with 1.11


I am not sure if this is the right place to ask this, but here goes. I had to download the starter kit in order to get the ember-template-compiler when moving our app to Ember 1.10. We compile our templates on the client side so needed the template compiler. I cannot find a place to download the ember-template-compiler-1.11 file since the starter kit is being revamped. Is there a template compiler for version 1.11 or am I missing something?

Yeah, we need to fix up the Releases - Ember.js site to properly list the template compiler (there is an open issue there to track it, but no one has picked it up just yet).

For now you can take any location on that site that lists the path to ember.debug.js or ember.prod.js, and replace the filename portion with ember-template-compiler.js.

For a few examples:

  • 1.11.0 – http://builds.emberjs.com/tags/v1.11.0/ember-template-compiler.js
  • 1.12.0-beta.1 – http://builds.emberjs.com/tags/v1.12.0-beta.1/ember-template-compiler.js
  • Beta channel – http://builds.emberjs.com/beta/ember-template-compiler.js
  • Canary channel – http://builds.emberjs.com/canary/ember-template-compiler.js

Sorry this isn’t more obvious at the moment, and anyone that is interested in helping out the issue is here: https://github.com/emberjs/website/issues/1998. I’m happy to help someone tackle this, I wish I had the time to fix it ASAP. :frowning:

1 Like

Thanks, this is very helpful. I know that everyone is working very hard to catch all the docs and resources up to the newest. Much appreciated.

Thanks for bringing it to the front of my mind, I went ahead and tracked down and fixed the issue.

Releases - Ember.js now has ember-template-compiler.js for each section.