Skip to content

Commit

Permalink
Add rxjs v7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
robisim74 committed Sep 15, 2021
1 parent e50ec7a commit e8e4b7c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 179 deletions.
189 changes: 16 additions & 173 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-l10n",
"version": "12.0.0",
"version": "12.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve angular-l10n-app --open",
Expand Down
6 changes: 3 additions & 3 deletions projects/angular-l10n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-l10n",
"version": "12.0.0",
"version": "12.0.1",
"author": "Roberto Simonetti",
"description": "An Angular library to translate texts, dates and numbers",
"repository": {
Expand All @@ -27,8 +27,8 @@
"@angular/forms": ">= 12.0.0",
"@angular/router": ">= 12.0.0",
"@angular/common": ">= 12.0.0",
"rxjs": "^6.5.4"
},
"rxjs": ">= 6.5.4"
},
"dependencies": {
"tslib": "^2.2.0"
}
Expand Down
4 changes: 2 additions & 2 deletions projects/angular-l10n/src/tests/l10n-routing.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ describe('L10nRoutingService', () => {
fixture.ngZone.run(() => {
loader.init();
tick();
router.navigate(['/en-US//mock1']);
router.navigate(['/en-US/mock1']);
tick();
router.navigate(['/en-US//mock2']);
router.navigate(['/en-US/mock2']);
tick();
location.back();
expect(location.path()).toBe('/en-US/mock1');
Expand Down

0 comments on commit e8e4b7c

Please sign in to comment.