Skip to content

Commit 9a7b975

Browse files
committed
Use yarn berry
1 parent b7f02cd commit 9a7b975

File tree

4 files changed

+964
-2
lines changed

4 files changed

+964
-2
lines changed

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# yarn2+ stuff
5+
.yarn/*
6+
!.yarn/releases
7+
!.yarn/releases/*
8+
!.yarn/plugins
9+
!.yarn/plugins/*
10+
!.yarn/patches
11+
!.yarn/patches/*
12+
13+
# Misc
114
/.git
215
dist
316
npm-debug.log*
417
yarn-debug.log*
518
yarn-error.log*
619
.vscode
7-
node_modules/
820
/tasks/
921
/rewired/
1022
_LOCAL/

.yarn/releases/yarn-4.12.0.cjs

Lines changed: 942 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+
# re-enable a specific script via `package.json:dependenciesMeta:<moduleName>:built = true`
2+
enableScripts: false
3+
4+
compressionLevel: mixed
5+
enableGlobalCache: false
6+
nodeLinker: node-modules
7+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,6 @@
121121
"last 1 firefox version",
122122
"last 1 safari version"
123123
]
124-
}
124+
},
125+
"packageManager": "yarn@4.12.0"
125126
}

0 commit comments

Comments
 (0)