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
22 changes: 11 additions & 11 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@
"start": "ng serve"
},
"dependencies": {
"@angular/cdk": "20.2.10",
"@angular/common": "20.3.9",
"@angular/compiler": "20.3.9",
"@angular/core": "20.3.9",
"@angular/forms": "20.3.9",
"@angular/material": "20.2.10",
"@angular/platform-browser": "20.3.9",
"@angular/router": "20.3.9",
"@angular/cdk": "21.0.0-rc.0",
"@angular/common": "21.0.0-rc.0",
"@angular/compiler": "21.0.0-rc.0",
"@angular/core": "21.0.0-rc.0",
"@angular/forms": "21.0.0-rc.0",
"@angular/material": "21.0.0-rc.0",
"@angular/platform-browser": "21.0.0-rc.0",
"@angular/router": "21.0.0-rc.0",
"angular-ecmascript-intl": "../dist/angular-ecmascript-intl",
"marked": "^16.0.0",
"ngx-markdown": "^20.0.0",
"prismjs": "^1.30.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "20.3.8",
"@angular/cli": "20.3.8",
"@angular/compiler-cli": "20.3.9",
"@angular/build": "21.0.0-rc.0",
"@angular/cli": "21.0.0-rc.0",
"@angular/compiler-cli": "21.0.0-rc.0",
"typescript": "~5.9.0"
}
}
2 changes: 1 addition & 1 deletion demo/tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "../tsconfig.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/app",
"types": []
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion libs/angular-ecmascript-intl/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"runner": "vitest",
"providersFile": "src/providers.ts",
"tsConfig": "tsconfig.spec.json",
"codeCoverage": true
"coverage": true
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions libs/angular-ecmascript-intl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"test": "ng test"
},
"devDependencies": {
"@angular/cli": "20.3.8",
"@angular/common": "20.3.9",
"@angular/core": "20.3.9",
"@angular/platform-browser": "20.3.9",
"@angular/cli": "21.0.0-rc.0",
"@angular/common": "21.0.0-rc.0",
"@angular/core": "21.0.0-rc.0",
"@angular/platform-browser": "21.0.0-rc.0",
"@vitest/coverage-v8": "^3.1.3",
"cpy-cli": "^6.0.0",
"dayjs": "^1.11.13",
"jsdom": "^27.0.0",
"ng-packagr": "20.3.0",
"ng-packagr": "21.0.0-next.4",
"vitest": "^3.1.3"
},
"sideEffects": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ describe('RelativeTimePipe', () => {
});

it('should transform a date almost 4 weeks in past', () => {
const date = dayjs().subtract(4, 'weeks').add(1, 'second').toDate();
const date = dayjs().subtract(4, 'weeks').add(1, 'day').toDate();

expect(testUnit.transform(date)).toEqual('3 weeks ago');
});
Expand Down
30 changes: 30 additions & 0 deletions libs/angular-ecmascript-intl/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}
2 changes: 1 addition & 1 deletion libs/angular-ecmascript-intl/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "../../tsconfig.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/lib",
"declaration": true,
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-ecmascript-intl/tsconfig.spec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "../../tsconfig.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec"
},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rxjs": "~7.8.2"
},
"devDependencies": {
"@angular/core": "^20.3.1",
"@angular/core": "21.0.0-rc.0",
"@eslint/js": "^9.26.0",
"@types/node": "^24.0.0",
"angular-eslint": "^20.0.0",
Expand All @@ -35,7 +35,7 @@
"devEngines": {
"runtime": {
"name": "node",
"version": "24.8.0",
"version": "24.11.0",
"onFail": "download"
}
},
Expand Down
2,041 changes: 855 additions & 1,186 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ ignoredBuiltDependencies:
- lmdb

minimumReleaseAge: 4320
minimumReleaseAgeExclude:
- "@angular/*"