Skip to content

Commit e8e4b7c

Browse files
committed
Add rxjs v7 support
1 parent e50ec7a commit e8e4b7c

File tree

4 files changed

+22
-179
lines changed

4 files changed

+22
-179
lines changed

package-lock.json

Lines changed: 16 additions & 173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-l10n",
3-
"version": "12.0.0",
3+
"version": "12.0.1",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve angular-l10n-app --open",

projects/angular-l10n/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-l10n",
3-
"version": "12.0.0",
3+
"version": "12.0.1",
44
"author": "Roberto Simonetti",
55
"description": "An Angular library to translate texts, dates and numbers",
66
"repository": {
@@ -27,8 +27,8 @@
2727
"@angular/forms": ">= 12.0.0",
2828
"@angular/router": ">= 12.0.0",
2929
"@angular/common": ">= 12.0.0",
30-
"rxjs": "^6.5.4"
31-
},
30+
"rxjs": ">= 6.5.4"
31+
},
3232
"dependencies": {
3333
"tslib": "^2.2.0"
3434
}

projects/angular-l10n/src/tests/l10n-routing.service.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ describe('L10nRoutingService', () => {
121121
fixture.ngZone.run(() => {
122122
loader.init();
123123
tick();
124-
router.navigate(['/en-US//mock1']);
124+
router.navigate(['/en-US/mock1']);
125125
tick();
126-
router.navigate(['/en-US//mock2']);
126+
router.navigate(['/en-US/mock2']);
127127
tick();
128128
location.back();
129129
expect(location.path()).toBe('/en-US/mock1');

0 commit comments

Comments
 (0)