Skip to content

Commit 01cf046

Browse files
committed
chore: migrate to Yarn
1 parent 96e5175 commit 01cf046

File tree

7 files changed

+12616
-18741
lines changed

7 files changed

+12616
-18741
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '18'
14-
cache: 'npm'
13+
node-version: '20.x'
14+
cache: 'yarn'
1515

1616
- name: Install packages
17-
run: npm ci
17+
run: yarn install
1818

1919
- name: Run tests
20-
run: npm test
20+
run: yarn test

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,16 @@ testem.log
4040
# System files
4141
.DS_Store
4242
Thumbs.db
43+
44+
.cache/
45+
.yarn/cache/
46+
website/.yarn/
47+
.yarnrc
48+
.yarn/*
49+
!.yarn/patches
50+
!.yarn/releases
51+
!.yarn/plugins
52+
!.yarn/sdks
53+
!.yarn/versions
54+
.pnp.*
55+
*.tgz

.yarn/releases/yarn-4.1.0.cjs

Lines changed: 893 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
compressionLevel: mixed
2+
3+
enableGlobalCache: false
4+
5+
nodeLinker: node-modules
6+
7+
yarnPath: .yarn/releases/yarn-4.1.0.cjs

0 commit comments

Comments
 (0)