Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f18ec07
ts upgrade
sawankshrma May 26, 2026
82b79fc
core upgrade 16
sawankshrma May 26, 2026
a6bac0a
material upgrade 16
sawankshrma May 26, 2026
afb3d58
fix(sidenav): apply primary color to all nav icons
sawankshrma May 27, 2026
fe8893b
fix: replace deprecated --prod flag in heroku-postbuild script
sawankshrma Jun 2, 2026
059a2af
docs: update migration log with Angular 15-16 upgrade
sawankshrma Jun 2, 2026
0f36e85
ts and zone.js upgrade
sawankshrma Jun 2, 2026
0c3b0a6
core upgrade 16-17
sawankshrma Jun 2, 2026
0ecca4b
material upgrade 16-17
sawankshrma Jun 2, 2026
ab33874
fix: clean up ESLint deps and bump Prettier to safe versions
sawankshrma Jun 2, 2026
42829a6
fix: replace v17 TODO placeholders with all-component-themes mixin
sawankshrma Jun 2, 2026
2189473
fix: resolve button and info icon CSS regressions from Angular Materi…
sawankshrma Jun 2, 2026
e62fa22
fix: replace deprecated RouterTestingModule in specs
sawankshrma Jun 2, 2026
584a334
fix: MatChip declaration in specs
sawankshrma Jun 2, 2026
bc9df6c
chore: reformat codebase with Prettier 3
sawankshrma Jun 2, 2026
960692d
docs: update Migration log with 16-17 upgrade and refactor previous u…
sawankshrma Jun 2, 2026
f96e1e0
fix(ci): update Node.js from 16 to 18 in test workflow
sawankshrma Jun 6, 2026
2f020c4
Signal-Migration: Matrix Component
sawankshrma Jun 3, 2026
408342c
Signal-Migration: ThemeService and TitleService
sawankshrma Jun 3, 2026
4448075
Signal-Migration: Report-Page and ReportConfigModal
sawankshrma Jun 3, 2026
3e9e6ae
docs: Add Signal Migration section to migration-doc
sawankshrma Jun 6, 2026
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
21 changes: 15 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,23 @@
"rules": {}
},
{
"files": ["*.html"],
"excludedFiles": ["*inline-template-*.component.html"],
"extends": ["plugin:prettier/recommended"],
"files": [
"*.html"
],
"excludedFiles": [
"*inline-template-*.component.html"
],
"extends": [
"plugin:prettier/recommended"
],
"rules": {
// NOTE: WE ARE OVERRIDING THE DEFAULT CONFIG TO ALWAYS SET THE PARSER TO ANGULAR (SEE BELOW)
"prettier/prettier": ["error", { "parser": "angular" }]
"prettier/prettier": [
"error",
{
"parser": "angular"
}
]
}
}

]
}
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Use Node.js 16.16.0
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js 18.13.0
uses: actions/setup-node@v4
with:
node-version: 16.0
node-version: 18.13.0
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Test
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "DSOMM:build:production"
"buildTarget": "DSOMM:build:production"
},
"development": {
"browserTarget": "DSOMM:build:development"
"buildTarget": "DSOMM:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "DSOMM:build"
"buildTarget": "DSOMM:build"
}
},
"test": {
Expand Down
58 changes: 0 additions & 58 deletions docs/logs/13-14_regression_test_failures.txt

This file was deleted.

191 changes: 0 additions & 191 deletions docs/logs/13-14_warnings.txt

This file was deleted.

26 changes: 0 additions & 26 deletions docs/logs/angular-cdk-14.txt

This file was deleted.

Loading
Loading