Skip to content

Commit

Permalink
Upgrade yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Jun 4, 2024
1 parent aa664d0 commit d9a35e0
Show file tree
Hide file tree
Showing 7 changed files with 37,624 additions and 27,771 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ jobs:
${{ runner.os }}-node-
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
run:
- corepack enable
- yarn set version berry
- yarn install --frozen-lockfile

- name: Cache Node.js dependencies
uses: actions/cache/save@v3
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ jobs:
${{ runner.os }}-node-
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
run:
- corepack enable
- yarn set version berry
- yarn install --frozen-lockfile

- name: Cache Node.js dependencies
uses: actions/cache/save@v3
Expand Down
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,13 @@ certs/*
.nx/cache

# Docker
docker/data/**/*
docker/data/**/*

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
9 changes: 0 additions & 9 deletions .yarnrc

This file was deleted.

13 changes: 13 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
nodeLinker: node-modules

supportedArchitectures:
cpu:
- current
- arm64
- x64
libc:
- glibc
os:
- current
- darwin
- linux
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,5 +204,6 @@
},
"resolutions": {
"@achrinza/node-ipc": "9.2.7"
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit d9a35e0

Please sign in to comment.