yarn: upgrade to 3 version

This commit is contained in:
Chika 2022-01-17 13:15:17 +03:00
parent 84a95f6ddc
commit 1f1d868707
4 changed files with 781 additions and 6 deletions

13
.gitignore vendored
View File

@ -2,11 +2,6 @@
# dependencies # dependencies
/node_modules /node_modules
/.pnp
.pnp.js
# testing
/coverage
# production # production
/build /build
@ -20,4 +15,12 @@ yarn-error.log*
yarn.lock yarn.lock
*.log *.log
package-lock.json package-lock.json
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.eslintcache .eslintcache

768
.yarn/releases/yarn-3.1.1.cjs vendored Normal file

File diff suppressed because one or more lines are too long

3
.yarnrc.yml Normal file
View File

@ -0,0 +1,3 @@
nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-3.1.1.cjs

View File

@ -114,5 +114,6 @@
"commitizen": { "commitizen": {
"path": "./node_modules/cz-conventional-changelog" "path": "./node_modules/cz-conventional-changelog"
} }
} },
"packageManager": "yarn@3.1.1"
} }