Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ yarn-error.log
testem.log
/typings
/.nx
__screenshots__
.vitest-attachments

# System files
.DS_Store
Expand Down
18 changes: 9 additions & 9 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
},
"dependencies": {
"@angular/cdk": "^21.1.0",
"@angular/common": "^21.1.0",
"@angular/compiler": "^21.1.0",
"@angular/core": "^21.1.0",
"@angular/forms": "^21.1.0",
"@angular/common": "^21.2.5",
"@angular/compiler": "^21.2.5",
"@angular/core": "^21.2.5",
"@angular/forms": "^21.2.5",
"@angular/material": "^21.1.0",
"@angular/platform-browser": "^21.1.0",
"@angular/router": "^21.1.0",
"@angular/platform-browser": "^21.2.5",
"@angular/router": "^21.2.5",
"angular-ecmascript-intl": "../dist/angular-ecmascript-intl",
"marked": "^17.0.0",
"ngx-markdown": "^21.0.0",
Expand All @@ -22,9 +22,9 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "21.2.1",
"@angular/cli": "21.2.1",
"@angular/compiler-cli": "21.2.2",
"@angular/build": "21.2.3",
"@angular/cli": "21.2.3",
"@angular/compiler-cli": "21.2.5",
"typescript": "5.9.3"
}
}
10 changes: 5 additions & 5 deletions libs/angular-ecmascript-intl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
},
"devDependencies": {
"@angular/build": "21.2.1",
"@angular/cli": "21.2.1",
"@angular/common": "21.2.2",
"@angular/core": "21.2.2",
"@angular/platform-browser": "21.2.2",
"@angular/cli": "21.2.3",
"@angular/common": "21.2.5",
"@angular/core": "21.2.5",
"@angular/platform-browser": "21.2.5",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"cpy-cli": "7.0.0",
"dayjs": "1.11.20",
"ng-packagr": "21.2.0",
"ng-packagr": "21.2.1",
"playwright": "1.58.2",
"rxjs": "7.8.2",
"vitest": "4.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ describe('RelativeTimePipe', () => {

describe('weeks', () => {
it('should transform a date 1 week in future', () => {
const date = dayjs().add(1, 'week').add(1, 'second').toDate();
// We need to account for clock changes here
const date = dayjs().add(1, 'week').add(2, 'hour').toDate();

expect(testUnit.transform(date)).toEqual('in 1 week');
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"format-check": "oxfmt --check"
},
"devDependencies": {
"@angular/core": "21.2.2",
"@angular/core": "21.2.5",
"@types/node": "24.12.0",
"angular-eslint": "21.3.1",
"eslint": "10.0.3",
Expand Down
420 changes: 283 additions & 137 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@ packages:
- demo

minimumReleaseAge: 4320

overrides:
sass: ^1.97.3 # without this, timeouts may occur in the tests
Loading