Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ember Cli not compiling with broccoli-emblem-compiler

I am trying to set up this repository locally https://github.com/lrdiv/ember-soundcloud and i have come across to this issue with broccoli-emblem-compiler. See the image in attachedterminal error

From my understanding the broccoli-emblem-compiler is not able to compile my emblem templates and i don't know how i can figure it out.

These are all the steps i have done to install and set up the project with Ember-Cli

ember new soundcloud

ember install:addon ember-cli-coffeescript

ember install:npm broccoli-emblem-compiler

I have deleted the app folder and replace with the project https://github.com/lrdiv/ember-soundcloud that i have cloned

then i have installed the other node modules required

ember install:npm broccoli-static-compiler

ember install:npm broccoli-merge-trees  

ember install:npm install body-parser

and at the end i run

ember server , and in my terminal i get that error i have attached.

What can i do now to sort this out? What's really the problem?

like image 810
Koala7 Avatar asked Feb 22 '15 19:02

Koala7


2 Answers

I did many things to try to fix this. One was replacing the project broccoli-emblem-compiler with this line in the project settings:

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

At some time the error went away, I think it was when I used this repository. It is mentioned in the other issues.

like image 187
Hugo Logmans Avatar answered Oct 11 '22 14:10

Hugo Logmans


I ran into problems with broccoli-emblem-compiler, but just had success with ember-cli-emblem-hbs-printer -

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

like image 31
andorov Avatar answered Oct 11 '22 16:10

andorov