我正在编写一个 ember 应用程序,而不是使用 rails 或 grunt 做任何事情。我以前有一个简短的 python 程序,它获取文本文件并markdown
用它们做一些事情,然后使用以下命令将它们全部编译到一个templates.js
文件中ember-precompile
:
ember-precompile templates/*.hbs -f templates/templates.js
这在我升级 ember 之前效果很好,现在我收到了这个错误。
Uncaught Template was precompiled with an older version of Handlebars than the current runtime.
Please update your precompiler to a newer version (>= 1.0.0) or downgrade your runtime to an older version (== 1.0.0-rc.3).
我需要升级我的 ember-precompile 程序,但是更改 grunt 配置或更改 gemfile 之类的解决方案对我没有好处,因为我没有使用这些工具中的任何一个。
灰烬版本Version: v1.0.0
Last commit: e2ea0cf (2013-08-31 23:47:39 -0700)
车把版Handlebars.VERSION = "1.0.0";
随意填补我理解中的任何空白。出于短期开发目的,我只是将我的模板放入其中,index.html
但我想先对我的模板进行降价操作,这样不会永远这样做。