Skip to content

Commit 7ed8fdf

Browse files
committed
chore(*): added overrides and remove --legacy-peer-deps
1 parent a8ef1cd commit 7ed8fdf

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

.github/workflows/build-app-crm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5050

5151
- name: Install dependencies
52-
run: npm ci --legacy-peer-deps
52+
run: npm ci
5353

5454
- name: Run lint
5555
run: npm run lint

.github/workflows/build-app-lob.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5555

5656
- name: Install dependencies
57-
run: npm ci --legacy-peer-deps
57+
run: npm ci
5858

5959
- name: Run lint
6060
run: npm run lint

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
- task: Npm@1
1818
inputs:
1919
command: 'custom'
20-
customCommand: 'install --legacy-peer-deps'
20+
customCommand: 'install'
2121
customEndpoint: 'public proget'
2222
env:
2323
AZURE_PIPELINES: "true"

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,20 @@
8080
},
8181
"overrides": {
8282
"igniteui-angular-extras": {
83-
"igniteui-angular": "^18.2.0"
83+
"igniteui-angular": "^19.0.0-rc.0",
84+
"@angular/core": "^19.0.0",
85+
"@angular/common": "^19.0.0"
86+
},
87+
"@ng-bootstrap/ng-bootstrap": {
88+
"@angular/common": "^19.0.0",
89+
"@angular/core": "^19.0.0",
90+
"@angular/forms": "^19.0.0",
91+
"@angular/localize": "^19.0.0"
92+
},
93+
"igniteui-angular-charts": {
94+
"@angular/core": "^19.0.0",
95+
"@angular/common": "^19.0.0",
96+
"@angular/compiler": "^19.0.0"
8497
}
8598
},
8699
"devDependencies": {

0 commit comments

Comments
 (0)