-
-
Notifications
You must be signed in to change notification settings - Fork 188
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
cfe915c
commit 361b3e5
Showing
4 changed files
with
83 additions
and
27 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
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,7 +1,11 @@ | ||
import { hash } from 'rsvp'; | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class ReleasesLtsRoute extends Route { | ||
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 |