教程
未读
NPM、YARN、PNPM 如何删除缓存文件
npm: 查看缓存路径 `npm config get cache`,清除缓存 `npm cache clean --force`;Yarn: 查看缓存路径 `yarn cache dir`,清除缓存 `yarn cache clean`;pnpm: 查看缓存路径 `pnpm store path`,清除缓存 `pnpm store prune`。