suchitpuri / emberjs-essentials

Ember.js Essentials Code Repository
GNU Lesser General Public License v3.0
18 stars 16 forks source link

Error broccoli-esnext is deprecated. #11

Open andriyv5 opened 8 years ago

andriyv5 commented 8 years ago

Running examples from https://github.com/suchitpuri/emberjs-essentials/ . I'm receiving errors :

:~/ember-projects/emberjs-essentials/chapter-5/example1$ ember server

version: 0.1.4 
invalid watchman found, version: [4.3.0] did not satisfy [^3.0.0], falling back to NodeWatcher 
[deprecated] broccoli-esnext is deprecated. Use broccoli-babel-transpiler instead. https://github.com/babel/broccoli-babel-transpiler 
[deprecated] broccoli-esnext is deprecated. Use broccoli-babel-transpiler instead. https://github.com/babel/broccoli-babel-transpiler 
[deprecated] broccoli-esnext is deprecated. Use broccoli-babel-transpiler instead. https://github.com/babel/broccoli-babel-transpiler 
[deprecated] broccoli-esnext is deprecated. Use broccoli-babel-transpiler instead. https://github.com/babel/broccoli-babel-transpiler

and then ember server won't work properly. It starts but I never receive response from localhost:4200 keeping waiting for it. I checked code for existing references to broccoli-esnext. But it seemed to be called as the dependence to some package, not included directly in package.json. Spent lots of time googling the issue but with no luck so far.

zhisme commented 8 years ago

@favoreddev

git clone https://github.com/facebook/watchman.git 
    cd watchman
    git checkout v3.5.0
    ./autogen.sh 
    ./configure
    make
    make install

made my day