yarn cache ls
Yarn stores every package in a global cache in your user directory on the file
system. yarn cache ls
will print out every cached package.
yarn cache dir
Running yarn cache dir
will print out the path where yarn’s global cache is currently stored.
yarn cache clean
Running this command will clear the local cache. It will be populated again the
next time yarn
or yarn install
is run.
← Previous: yarn bin Next: yarn check →