Skip to content

Commit 62e92b7

Browse files
authored
Merge pull request #150 from mturley/fix-peer-deps
Remove unnecessary dependencies so we no longer need `npm install --legacy-peer-deps`
2 parents 6d2eae5 + 460c72d commit 62e92b7

File tree

5 files changed

+3296
-6349
lines changed

5 files changed

+3296
-6349
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: lts/*
2020
- name: Install dependencies
21-
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
21+
run: npm install
2222
- name: Run eslint
2323
run: npm run lint
2424
test:
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
node-version: lts/*
3434
- name: Install dependencies
35-
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
35+
run: npm install
3636
- name: Run tests
3737
run: npm run test
3838
build:
@@ -46,6 +46,6 @@ jobs:
4646
with:
4747
node-version: lts/*
4848
- name: Install dependencies
49-
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
49+
run: npm install
5050
- name: Attempt a build
5151
run: npm run build

0 commit comments

Comments
 (0)