Skip to content

Commit ba9bbd6

Browse files
Upgrade Vertex to Angular 20 (#2345)
Angular 18 to 20
1 parent 8dfacb8 commit ba9bbd6

312 files changed

Lines changed: 12997 additions & 11834 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/search-ui-deploy-composite/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
- name: Use Node.js
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: 18
26+
node-version: 24
2727

2828
- name: Configure AWS credentials from Test account
2929
uses: aws-actions/configure-aws-credentials@v3

.github/workflows/search-ui-edc-deploy-composite/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
- name: Use Node.js
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 18
23+
node-version: 24
2424

2525
- name: Configure AWS credentials from Test account
2626
uses: aws-actions/configure-aws-credentials@v3

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ testem.log
4141
.DS_Store
4242
Thumbs.db
4343
local-serve.sh
44+
45+
# Claude Code
46+
.claude/
47+
CLAUDE.md

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CodeFactor](https://www.codefactor.io/repository/github/asfadmin/discovery-searc
55

66
[![Join the chat at https://gitter.im/ASFDiscovery/Vertex](https://badges.gitter.im/ASFDiscovery/Vertex.svg)](https://gitter.im/ASFDiscovery/Vertex?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
77

8-
ASF's Angular search web application
8+
ASF's Angular search web application
99

1010
## Deployments
1111
| Maturity | Deployment |
@@ -34,7 +34,7 @@ After angular is installed, run `ng serve` for a dev server. Navigate to `http:/
3434

3535
### Custom Domain
3636

37-
In order to get certain services to work, it's necessary to set up a .asf.alaska.edu domain pointing to your local server in your host file. This process varies on the OS you are using.
37+
In order to get certain services to work, it's necessary to set up a .asf.alaska.edu domain pointing to your local server in your host file. This process varies on the OS you are using.
3838

3939
Add the following line via the methods below to set up local.asf.alaska.edu to point towards your local development server.
4040
```

angular.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,14 @@
6565
"prismjs",
6666
"ua-parser-js",
6767
"@formatjs/intl-displaynames/polyfill",
68+
"@formatjs/intl-displaynames/locale-data/en",
69+
"@formatjs/intl-displaynames/locale-data/es",
6870
"webfont-matcher/lib/fonts/google.js",
6971
"mapbox-to-css-font",
70-
"polygon-clipping"
72+
"polygon-clipping",
73+
"lerc",
74+
"xml-utils",
75+
"earcut"
7176
],
7277
"extractLicenses": false,
7378
"sourceMap": true,
@@ -161,25 +166,41 @@
161166
"schematics": {
162167
"@schematics/angular:component": {
163168
"style": "scss",
164-
"skipTests": true
169+
"skipTests": true,
170+
"type": "component"
165171
},
166172
"@schematics/angular:class": {
167173
"skipTests": true
168174
},
169175
"@schematics/angular:directive": {
170-
"skipTests": true
176+
"skipTests": true,
177+
"type": "directive"
171178
},
172179
"@schematics/angular:pipe": {
173-
"skipTests": true
180+
"skipTests": true,
181+
"typeSeparator": "."
174182
},
175183
"@schematics/angular:service": {
176-
"skipTests": false
184+
"skipTests": false,
185+
"type": "service"
177186
},
178187
"@angular-eslint/schematics:application": {
179188
"setParserOptionsProject": true
180189
},
181190
"@angular-eslint/schematics:library": {
182191
"setParserOptionsProject": true
192+
},
193+
"@schematics/angular:guard": {
194+
"typeSeparator": "."
195+
},
196+
"@schematics/angular:interceptor": {
197+
"typeSeparator": "."
198+
},
199+
"@schematics/angular:module": {
200+
"typeSeparator": "."
201+
},
202+
"@schematics/angular:resolver": {
203+
"typeSeparator": "."
183204
}
184205
}
185206
}

0 commit comments

Comments
 (0)