Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 529 Bytes

build.md

File metadata and controls

54 lines (43 loc) · 529 Bytes

前端构建工具备忘

简明手册

缓存

npm

查看缓存路径

npm config get cache

清除缓存

npm cache clean --force

缓存验证

npm cache verify

pnpm

查看缓存路径

pnpm store path

清除缓存

pnpm store prune

yarn

查看缓存列表

yarn cache list

查看缓存路径

yarn cache dir

清除缓存

yarn cache clean

缓存验证

npm cache verify