Koala7
Koala7

Reputation: 1404

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?

Upvotes: 5

Views: 788

Answers (3)

andorov
andorov

Reputation: 4336

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

Upvotes: 2

I was able to solve this by specifying a version of emblem.js in my package.json file.

Specifically, I added the following line:

"emblem": "0.3.14"

Upvotes: 0

Hugo Logmans
Hugo Logmans

Reputation: 2252

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.

Upvotes: 3

Related Questions