赞
踩
今天想改一下yarn
缓存地址
一不小心执行了yarn config set global-folder
然后yarn的所有操作都变成了
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type boolean (true)
这下完犊子了,咋整呢
1.找到yarn的配置文件
win+R
输入%homepath%
回车
2.打开.yarnrc
文件
看到红框里的true没有,这就是这次报错的元凶
将其删除,使用yarn cache dir
查看默认路径在哪(我的在%homepath%\AppData\Local\Yarn\Data
)
将其下的所有文件更改到其他为
#yarn config set global-folder "新的路径"
#yarn config set cache-folder "新的缓存路径"
#实例
yarn config set global-folder "G:\nodejs\Yarn\Data"
#实例
yarn config set cache-folder "G:\nodejs\Yarn\Cache"
重新执行yarn global dir
好耶!完美解决,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。