Skip to content

Commit 02e70ce

Browse files
committed
Angular v19.2
1 parent c8f5eae commit 02e70ce

File tree

4 files changed

+2183
-2469
lines changed

4 files changed

+2183
-2469
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818

19-
- uses: pnpm/action-setup@v4
20-
name: Install pnpm
19+
- name: Install pnpm
20+
uses: pnpm/action-setup@v4
21+
with:
22+
version: 10
2123

2224
- name: Install Node.js
2325
uses: actions/setup-node@v4

eslint.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,10 @@ export default tseslint.config(
141141
ignoreDeclarationSort: true,
142142
}],
143143
'unused-imports/no-unused-imports': 'error',
144-
// TODO after enable strict
144+
// TODO enable (or remove) after enable strict
145145
'@typescript-eslint/no-unnecessary-condition': 'off',
146146
'@typescript-eslint/prefer-nullish-coalescing': 'off',
147+
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'off',
147148
// TODO
148149
'@typescript-eslint/unbound-method': 'off',
149150
'camelcase': 'off',

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"version": "3.2.4",
44
"description": "Standard Energy Efficiency Data (SEED) Platform™",
55
"license": "SEE LICENSE IN LICENSE.md",
6-
"packageManager": "pnpm@10.2.0",
76
"repository": {
87
"type": "git",
98
"url": "github:SEED-platform/seed"
@@ -12,7 +11,8 @@
1211
"url": "https://github.com/SEED-platform/seed/issues"
1312
},
1413
"engines": {
15-
"node": ">=22"
14+
"node": ">=22",
15+
"pnpm": ">=10"
1616
},
1717
"private": true,
1818
"scripts": {
@@ -34,17 +34,17 @@
3434
"update-translations": "node --env-file=.env --import=tsx --no-warnings update-translations.mts"
3535
},
3636
"dependencies": {
37-
"@angular/animations": "^19.1.0",
38-
"@angular/cdk": "^19.1.0",
39-
"@angular/common": "^19.1.0",
40-
"@angular/compiler": "^19.1.0",
41-
"@angular/core": "^19.1.0",
42-
"@angular/forms": "^19.1.0",
43-
"@angular/material": "^19.1.0",
44-
"@angular/material-luxon-adapter": "^19.1.0",
45-
"@angular/platform-browser": "^19.1.0",
46-
"@angular/platform-browser-dynamic": "^19.1.0",
47-
"@angular/router": "^19.1.0",
37+
"@angular/animations": "^19.2.0",
38+
"@angular/cdk": "^19.2.0",
39+
"@angular/common": "^19.2.0",
40+
"@angular/compiler": "^19.2.0",
41+
"@angular/core": "^19.2.0",
42+
"@angular/forms": "^19.2.0",
43+
"@angular/material": "^19.2.0",
44+
"@angular/material-luxon-adapter": "^19.2.0",
45+
"@angular/platform-browser": "^19.2.0",
46+
"@angular/platform-browser-dynamic": "^19.2.0",
47+
"@angular/router": "^19.2.0",
4848
"@fontsource-variable/inter": "^5.1.1",
4949
"@jsverse/transloco": "^7.5.1",
5050
"crypto-es": "^2.1.0",
@@ -59,9 +59,9 @@
5959
"zone.js": "~0.15.0"
6060
},
6161
"devDependencies": {
62-
"@angular-devkit/build-angular": "^19.1.3",
63-
"@angular/cli": "^19.1.3",
64-
"@angular/compiler-cli": "^19.1.0",
62+
"@angular-devkit/build-angular": "^19.2.1",
63+
"@angular/cli": "^19.2.1",
64+
"@angular/compiler-cli": "^19.2.0",
6565
"@cspell/cspell-types": "^8.17.3",
6666
"@cspell/eslint-plugin": "^8.17.3",
6767
"@dotenvx/dotenvx": "^1.34.0",
@@ -86,7 +86,7 @@
8686
"eslint-plugin-import": "^2.31.0",
8787
"eslint-plugin-perfectionist": "^4.7.0",
8888
"eslint-plugin-unused-imports": "^4.1.4",
89-
"jasmine-core": "~5.5.0",
89+
"jasmine-core": "~5.6.0",
9090
"karma": "~6.4.4",
9191
"karma-chrome-launcher": "~3.2.0",
9292
"karma-coverage": "~2.2.1",

0 commit comments

Comments
 (0)