-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP - rough pass on updating LTS page for data breaking lockstep
- Loading branch information
1 parent
0a95498
commit 63bebc7
Showing
3 changed files
with
91 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
import { hash } from 'rsvp'; | ||
import Route from '@ember/routing/route'; | ||
import { inject as service } from '@ember/service'; | ||
|
||
export default class ReleasesLtsRoute extends Route { | ||
@service store; | ||
|
||
model() { | ||
return this.store.find('project', 'ember/lts'); | ||
return hash({ | ||
ember: this.store.find('project', 'ember/lts'), | ||
emberData: this.store.find('project', 'emberData/lts'), | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Ember Data | ||
baseFileName: ember-data | ||
filter: | ||
- /ember-data\./ | ||
repo: emberjs/data | ||
lastRelease: 5.3.0 | ||
channel: lts | ||
date: 2023-12-11 | ||
changelogPath: CHANGELOG.md | ||
debugFileName: .js | ||
--- | ||
|
||
# Install Ember Data %s: | ||
|
||
<br> | ||
npm install --save-dev ember-data@~%s |