7 Commits

Author SHA1 Message Date
Joel Wetzell 2181bddb9d udpate @types/node 2026-06-07 21:32:37 -05:00
Joel Wetzell acd4e490fe Merge pull request #114 from jwetzell/dependabot/npm_and_yarn/zone.js-0.16.2
Bump zone.js from 0.16.1 to 0.16.2
2026-06-07 21:27:57 -05:00
dependabot[bot] 94b1e3024c Bump zone.js from 0.16.1 to 0.16.2
Bumps [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) from 0.16.1 to 0.16.2.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/zone.js-0.16.2/packages/zone.js)

---
updated-dependencies:
- dependency-name: zone.js
  dependency-version: 0.16.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-08 02:27:07 +00:00
Joel Wetzell bfa408d280 cleanup tsconfig 2026-06-07 21:25:52 -05:00
Joel Wetzell d30603b11d pin version 2026-06-07 21:24:38 -05:00
Joel Wetzell 02c44549ae update angular to v22 2026-06-07 21:24:10 -05:00
Joel Wetzell 2bb71b79be update node 2026-06-07 21:22:01 -05:00
7 changed files with 1466 additions and 1449 deletions
+1 -1
View File
@@ -1 +1 @@
v22.16.0
v24.15.0
+1439 -1428
View File
File diff suppressed because it is too large Load Diff
+12 -12
View File
@@ -9,24 +9,24 @@
},
"private": true,
"dependencies": {
"@angular/animations": "21.2.6",
"@angular/common": "21.2.6",
"@angular/compiler": "21.2.6",
"@angular/core": "21.2.6",
"@angular/platform-browser": "21.2.6",
"@angular/platform-browser-dynamic": "21.2.6",
"@angular/animations": "22.0.0",
"@angular/common": "22.0.0",
"@angular/compiler": "22.0.0",
"@angular/core": "22.0.0",
"@angular/platform-browser": "22.0.0",
"@angular/platform-browser-dynamic": "22.0.0",
"luxon": "3.7.2",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.1"
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular/build": "^21.2.5",
"@angular/cli": "21.2.5",
"@angular/compiler-cli": "21.2.6",
"@angular/build": "22.0.0",
"@angular/cli": "22.0.0",
"@angular/compiler-cli": "22.0.0",
"@types/luxon": "3.7.1",
"@types/node": "22.16.5",
"@types/node": "24.1.0",
"prettier": "3.8.3",
"typescript": "5.9.3"
"typescript": "6.0.3"
}
}
+3 -4
View File
@@ -1,4 +1,4 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { interval, startWith } from 'rxjs';
import { GetClosestTimezoneFrom, Timezone } from './timezone/models/timezone.model';
import { TimezoneService } from './timezone/services/timezone.service';
@@ -7,6 +7,7 @@ import { TimezoneService } from './timezone/services/timezone.service';
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false,
})
export class AppComponent {
@@ -17,9 +18,7 @@ export class AppComponent {
timezones: string[] = [];
constructor(
private timezoneService: TimezoneService,
) {
constructor(private timezoneService: TimezoneService) {
const currentTimezone = this.timezoneService.getCurrentTimezone();
if (currentTimezone) {
this.timezones = this.timezoneService.getTimezones();
@@ -1,5 +1,5 @@
import { animate, state, style, transition, trigger } from '@angular/animations';
import { Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { Component, Input, OnChanges, OnInit, SimpleChanges, ChangeDetectionStrategy } from '@angular/core';
import { Timezone } from '../../models/timezone.model';
@Component({
@@ -24,6 +24,7 @@ import { Timezone } from '../../models/timezone.model';
transition('hide=>show', animate('450ms ease-in')),
]),
],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false,
})
export class TimezoneListComponent implements OnInit, OnChanges {
+9 -1
View File
@@ -6,5 +6,13 @@
"types": []
},
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"]
"include": ["src/**/*.d.ts"],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
-2
View File
@@ -2,8 +2,6 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"strict": true,