Skip to content

Commit 223554c

Browse files
Upgrade to Angular 17 (#1025)
* chore: latest version compatibility * migrated to 14 * migrated to 15 * migrated to 16 * migrated to 16 * migrated to 17 * feat: angular 17 * update node version * update node version * cleanup * fix: node actions in workflow * netlify: node version * cleanup
1 parent fad2738 commit 223554c

File tree

92 files changed

+17403
-34298
lines changed

Some content is hidden

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

92 files changed

+17403
-34298
lines changed

.github/workflows/test_and_deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build, Test, and Deploy
22

33
env:
4-
NODE_LATEST: 16.x
4+
NODE_LATEST: 18.x
55
NODE_OPTIONS: --max_old_space_size=6144
66

77
on: [push]
@@ -12,9 +12,9 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- name: Use Node.js ${{ env.NODE_LATEST }}
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: ${{ env.NODE_LATEST }}
2020

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,7 @@ Thumbs.db
4141

4242
# Cypress files
4343
cypress/videos
44-
cypress/screenshots
44+
cypress/screenshots
45+
46+
.angular/*
47+
.nx/*

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.19.0

angular.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"extract-i18n": {
8686
"builder": "@angular-devkit/build-angular:extract-i18n",
8787
"options": {
88-
"browserTarget": "ngx-ui:build"
88+
"buildTarget": "ngx-ui:build"
8989
}
9090
},
9191
"test": {
@@ -165,7 +165,6 @@
165165
}
166166
}
167167
},
168-
"defaultProject": "ngx-ui",
169168
"cli": {
170169
"analytics": false
171170
}

0 commit comments

Comments
 (0)