Ember Cli没有用西兰花标志编译器编译

我正在尝试在本地设置这个存储库https://github.com/lrdiv/ember-soundcloud ,我遇到了这个与西兰花徽记编译器的问题。 见附图中的图片 终端错误

从我的理解,西兰花徽记编译器不能编译我的标志模板,我不知道我怎么弄出来。

这些都是我已经完成的与Ember-Cli安装和设置项目的所有步骤

ember new soundcloud ember install:addon ember-cli-coffeescript ember install:npm broccoli-emblem-compiler 

我删除了应用程序文件夹,并replace我已经克隆的项目https://github.com/lrdiv/ember-soundcloud

那么我已经安装了所需的其他节点模块

 ember install:npm broccoli-static-compiler ember install:npm broccoli-merge-trees ember install:npm install body-parser 

最后我跑了

ember server ,并在我的terminal,我得到了我附加的错误。

我现在可以做什么来解决这个问题? 什么是真正的问题?

我遇到了broccoli-emblem-compiler ,但只用了ember-cli-emblem-hbs-printer

https://github.com/201-created/ember-cli-emblem-hbs-printer

我做了很多事情来解决这个问题。 一个是在项目设置中用这一行replace项目broccoli-emblem-compiler:

“broccoli-emblem-compiler”:“git + https://github.com/cascalheira/broccoli-emblem-compiler.git

有一段时间,错误消失了,我想这是我使用这个存储库的时候。 这是在其他问题中提到的。

我能够通过在我的package.json文件中指定一个emblem.js版本来解决这个问题。

具体来说,我添加了以下行:

"emblem": "0.3.14"

Interesting Posts