Skip to content

Commit c087b89

Browse files
committed
Use Yarn Berry
1 parent 705c6c0 commit c087b89

File tree

6 files changed

+5509
-2911
lines changed

6 files changed

+5509
-2911
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@ node_modules
22
out
33
out.node
44
dist
5-
vite.config.ts.timestamp-*.mjs
5+
vite.config.ts.timestamp-*.mjs
6+
7+
.pnp.*
8+
.yarn/*
9+
!.yarn/patches
10+
!.yarn/plugins
11+
!.yarn/releases
12+
!.yarn/sdks
13+
!.yarn/versions

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
22
"jestrunner.jestCommand": "yarn vitest run",
3+
"search.exclude": {
4+
"**/node_modules": true,
5+
"**/.yarn": true,
6+
"**/dist": true,
7+
"**/out": true
8+
},
39
}

.yarn/releases/yarn-4.2.2.cjs

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

.yarnrc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.2.2.cjs

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@
4848
"src",
4949
"README.md",
5050
"LICENSE"
51-
]
51+
],
52+
"packageManager": "[email protected]"
5253
}

0 commit comments

Comments
 (0)