7 lines
440 B
Batchfile
7 lines
440 B
Batchfile
|
set /P nodePath=<nodePath.txt
|
|||
|
set path=%nodePath%;%path%
|
|||
|
::yarn --registry https://registry.npm.taobao.org || npm install -g yarn --registry https://registry.npm.taobao.org && yarn --registry https://registry.npm.taobao.org
|
|||
|
::https://registry.npmmirror.com
|
|||
|
::如果报‘pnpm error (CERT_HAS_EXPIRED). Will retry in 10 seconds. 2 retries left.’执行下一行更改源
|
|||
|
::npm config set registry https://registry.npmmirror.com
|
|||
|
pnpm install
|