Skip to content

Commit d72b3d8

Browse files
committed
fix(*): removing --legacy-peer-deps as it's not needed
1 parent b8cddfb commit d72b3d8

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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 install --legacy-peer-deps
52+
run: npm install
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 install --legacy-peer-deps
57+
run: npm install
5858

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

azure-devops/app-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ steps:
6464
- task: Npm@1
6565
displayName: npm install
6666
inputs:
67-
command: install --legacy-peer-deps
67+
command: install
6868
workingDir: $(Build.SourcesDirectory)
6969
verbose: false
7070
customEndpoint: 'public proget'

azure-devops/app-crm-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ steps:
6464
- task: Npm@1
6565
displayName: npm install
6666
inputs:
67-
command: install --legacy-peer-deps
67+
command: install
6868
workingDir: $(Build.SourcesDirectory)
6969
verbose: false
7070
customEndpoint: 'public proget'

azure-devops/app-lob-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ steps:
6464
- task: Npm@1
6565
displayName: npm install
6666
inputs:
67-
command: install --legacy-peer-deps
67+
command: install
6868
workingDir: $(Build.SourcesDirectory)
6969
verbose: false
7070
customEndpoint: 'public proget'

0 commit comments

Comments
 (0)