-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): upgrade `ember-cli-babel` This fixes the following error: ``` Build Error (broccoli-persistent-filter:Babel > [Babel: @ember/test-helpers]) in @ember/test-helpers/dom/-is-focusable.js Cannot find module '@babel/compat-data/corejs3-shipped-proposals' Require stack: - /Users/jan/open-source/ember-router-scroll/node_modules/@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js - /Users/jan/open-source/ember-router-scroll/node_modules/@babel/preset-env/lib/index.js - /Users/jan/open-source/ember-router-scroll/node_modules/@babel/core/lib/config/files/plugins.js - /Users/jan/open-source/ember-router-scroll/node_modules/@babel/core/lib/config/files/index.js - /Users/jan/open-source/ember-router-scroll/node_modules/@babel/core/lib/index.js - /Users/jan/open-source/ember-router-scroll/node_modules/broccoli-babel-transpiler/lib/worker.js ``` * refactor: first shot at using `RouterService` * refactor to master * fix lockfile * some improvements to tests. more to go * fix some tests * Fix tests * fix bug in recursive call * Update docs * rm deprecation outdated * Do not need locations/router-scroll #193 * CHANGELOG 4.0.0 * Update addon/services/router-scroll.js Co-authored-by: John Leja <[email protected]> * fix comment * Address some feedback * Update addon/services/router-scroll.js Co-authored-by: Chantal Broeren <[email protected]> * moar updates * address moar feedback Co-authored-by: Jan Buschtöns <[email protected]> Co-authored-by: John Leja <[email protected]> Co-authored-by: Chantal Broeren <[email protected]>
- Loading branch information
1 parent
07e97a4
commit 27db57f
Showing
10 changed files
with
1,139 additions
and
2,294 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
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
export function initialize(appInstance) { | ||
// Eagerly initialize service | ||
appInstance.lookup('service:router-scroll'); | ||
} | ||
|
||
export default { | ||
initialize | ||
}; |
Oops, something went wrong.