Skip to content

Commit cffbbfa

Browse files
upgrade @rumblefishdev/ui and move it to the root package.json + update workflows to use --legacy-peer-deps option
1 parent 91c3cdf commit cffbbfa

7 files changed

Lines changed: 3867 additions & 7276 deletions

File tree

.github/workflows/deploy-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
4848
- name: Install dependencies
4949
run: |
50-
npm i
50+
npm i --legacy-peer-deps
5151
node_modules/.bin/lerna bootstrap
5252
env:
5353
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5454

5555
- name: Check if @rumblefishdev/ui installed
5656
run: |
57-
if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
57+
if [[ ! -d node_modules/@rumblefishdev/ui ]]; then
5858
echo "Error: @rumblefishdev/ui not installed"
5959
exit 1
6060
fi

.github/workflows/deploy-stage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
4848
- name: Install dependencies
4949
run: |
50-
npm i
50+
npm i --legacy-peer-deps
5151
node_modules/.bin/lerna bootstrap
5252
env:
5353
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5454

5555

5656
- name: Check if @rumblefishdev/ui installed
5757
run: |
58-
if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
58+
if [[ ! -d node_modules/@rumblefishdev/ui ]]; then
5959
echo "Error: @rumblefishdev/ui not installed"
6060
exit 1
6161
fi

0 commit comments

Comments
 (0)