Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New Ember App with Ember 1.12.2

i want to build a new Ember CLI App with the Command: Ember new demo-app.

The Problem is, that i need Ember 1.12.2 and not the newest one.

How can i create an App with Ember 1.12.2?

Thanks a lot

like image 954
Alex_ Avatar asked Jan 21 '26 08:01

Alex_


1 Answers

  1. Install ember-cli 0.2.7 globally
  2. ember new demo-app
  3. Edit your bower.json so that ember is 1.12.2 and ember-data is 1.0.0-beta.19.2
  4. bower install
  5. Edit your package.json so that ember-data matches version in bower.json
  6. npm install
  7. ember s
  8. (Optional, but it will improve performance): Upgrade your project's ember-cli version as much as you would like to attempt. (expert step, unfortunately) (Technically it is possible to get all the way to ember-cli 2.5)
like image 195
Gaurav Avatar answered Jan 23 '26 06:01

Gaurav