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
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -33,6 +33,16 @@ jspm_packages
|
||||||
# Optional npm cache directory
|
# Optional npm cache directory
|
||||||
.npm
|
.npm
|
||||||
|
|
||||||
|
# yarn cache directory
|
||||||
|
.pnp.*
|
||||||
|
.yarn/*
|
||||||
|
!.yarn/patches
|
||||||
|
!.yarn/plugins
|
||||||
|
!.yarn/releases
|
||||||
|
!.yarn/sdks
|
||||||
|
!.yarn/versions
|
||||||
|
|
||||||
|
|
||||||
# Optional REPL history
|
# Optional REPL history
|
||||||
.node_repl_history
|
.node_repl_history
|
||||||
|
|
||||||
|
@ -44,4 +54,4 @@ jspm_packages
|
||||||
|
|
||||||
/build_keycloak
|
/build_keycloak
|
||||||
/build
|
/build
|
||||||
/storybook-static
|
/storybook-static
|
||||||
|
|
Loading…
Reference in a new issue