Skip to content

Commit ca88412

Browse files
committed
Use yarn 3.6.3
1 parent 5f2a836 commit ca88412

File tree

4 files changed

+886
-2
lines changed

4 files changed

+886
-2
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ node_modules/
1414
inst/doc
1515

1616
# yarn
17-
inst/yarn.lock
17+
.yarn/*
18+
!.yarn/releases
19+
!.yarn/plugins
20+
!.yarn/sdks
21+
!.yarn/versions
22+
yarn-error.log
23+
1824

1925
inst/rmarkdown/templates/*/skeleton/skeleton.html
2026

.yarn/releases/yarn-3.6.3.cjs

Lines changed: 874 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-3.6.3.cjs

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@
2828
"checks": "yarn run check_types && yarn run check_lint",
2929
"check_lint": "node --eval \"console.log('linting code...')\" && eslint --fix --ext .ts srcts/src",
3030
"check_types": "tsc --noEmit -p tsconfig.json"
31-
}
31+
},
32+
"packageManager": "[email protected]"
3233
}

0 commit comments

Comments
 (0)