Update .gitignore - yarn cache dir
Yarn produce many files when running yarn install. According to their doc[1], most of the files should be ignored, unless a zero-install strategy is wanted (which ois not the case here AFAIK). [1] https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
This commit is contained in:
parent
161ebea141
commit
11f71c9102
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -33,6 +33,16 @@ jspm_packages
|
|||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# yarn cache directory
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
|
|
Loading…
Reference in a new issue