jscs-dev / node-jscs

:arrow_heading_up: JavaScript Code Style checker (unmaintained)
https://jscs-dev.github.io
MIT License
4.96k stars 510 forks source link

Current babel-core version deprecated (Known issue) #1972

Closed JSMike closed 8 years ago

JSMike commented 9 years ago

I'm receiving the following message when installing jscs

npm WARN deprecated babel-core@5.8.33: Babel 5 is no longer being maintained. Upgrade to Babel 6.

Babel 6.0.0 was released on October 29th, 2015. http://babeljs.io/blog/2015/10/29/6.0.0/

Updated based on comment from @hzoo

Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.

hzoo commented 9 years ago

There are breaking changes so it won't just work. JSCS only uses babel for the parser so its fine just using babel 5 for now. Also we are switching to using cst which will just use babylon.

markelog commented 9 years ago

@hzoo

Also we are switching to using cst which will just use babylon.

Yeah, this week i will start working on it, if you not beat me to it :-)

hzoo commented 8 years ago

Similar to https://github.com/jscs-dev/babel-jscs/issues/24. We should be able to remove babel-core and replace it for now.

hzoo commented 8 years ago

We should just inline the types again instead of var types = require('babel-core').types;