2

I know how to check what my current version is

How to tell ember.js and ember-data version from ember-CLI?

But if I want to check which version I'm on from Ember-CLI, what is the best way to do this? I know I can google it but it would be nice if I could get the latest version straight from my command-prompt.

Cameron
  • 2,805
  • 3
  • 31
  • 45

1 Answers1

2

Ember, ember-cli, and ember-data all keep their releases in sync. You can check what the latest release is in your terminal by using npm-view

npm view ember-cli version
npm view ember-data version

But my favorite way is to just check the blog, it always has the latest releases with some helpful notes. https://emberjs.com/blog/

RustyToms
  • 7,600
  • 1
  • 27
  • 36