Skip to content

Commit

Permalink
chore: upgrade to 17 - BREAKING CHANGE (#978)
Browse files Browse the repository at this point in the history
- chore: upgrade to 17
BREAKING CHANGE: Requires min Angular version 17
  • Loading branch information
adisreyaj authored Apr 24, 2024
1 parent 71a77a4 commit 99dfc1e
Show file tree
Hide file tree
Showing 6 changed files with 4,374 additions and 4,269 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node 16
uses: actions/setup-node@v3
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
cache: 'npm'

- name: NPM Install
Expand All @@ -26,14 +26,14 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Node 16
uses: actions/setup-node@v3
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
cache: 'npm'

- name: NPM Install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node 16
uses: actions/setup-node@v3
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
cache: 'npm'

- name: NPM Install
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "hyperdash-angular-app:build"
"buildTarget": "hyperdash-angular-app:build"
},
"configurations": {
"production": {
"browserTarget": "hyperdash-angular-app:build:production"
"buildTarget": "hyperdash-angular-app:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "hyperdash-angular-app:build"
"buildTarget": "hyperdash-angular-app:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 99dfc1e

Please sign in to comment.