我正在尝试在本地设置此存储库https://github.com/lrdiv/ember-soundcloud,我已经遇到过broccoli-emblem-compiler这个问题。 See the image in attached
根据我的理解,西兰花 - 会徽 - 编译器无法编译我的会徽模板,我不知道如何弄明白。
这些是我用Ember-Cli
安装和设置项目所做的所有步骤ember new soundcloud
ember install:addon ember-cli-coffeescript
ember install:npm broccoli-emblem-compiler
我删除了app文件夹,并替换为我已克隆的项目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
,在我的终端中,我得到了我附加的错误。
我现在可以做些什么来解决这个问题?真正的问题是什么?
答案 0 :(得分:3)
我做了很多事来试图解决这个问题。一个是在项目设置中用这一行替换项目broccoli-emblem-compiler:
" broccoli-emblem-compiler":" git + https://github.com/cascalheira/broccoli-emblem-compiler.git"
在某个时候错误消失了,我想是在我使用这个存储库的时候。其他问题也提到了这一点。
答案 1 :(得分:2)
我遇到broccoli-emblem-compiler
的问题,但只是在ember-cli-emblem-hbs-printer
-
答案 2 :(得分:0)
我能够通过在package.json文件中指定一个版本的emblem.js来解决这个问题。
具体来说,我添加了以下内容:
"emblem": "0.3.14"