web-dev-qa-db-ja.com

糸はプロキシ設定を無視します

Windows 10マシンで、yarnとreact-nativeを使用してビルドジョブを実行しようとしています。次のコマンドは、ネイティブWindowsアプリの実際のビルドを準備するためにjenkins内で実行されます。

yarn config set proxy http://192.109.190.88:8080 
yarn config set https-proxy http://192.109.190.88:8080 
yarn add react-native 

これにより、プロキシ設定は正しいものの、次の出力が表示されます( " http://192.109.190.88:8080/ "も試してみました):

yarn add v0.27.5
[1/4] Resolving packages...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...

なぜこれが起こるのかについてのどんな考えもよく評価されます。

9

このリンク https://yarnpkg.com/lang/en/docs/cli/config/ をたどってhttps-proxyを削除するだけでうまくいきました。

2
Tipu

私は同じ問題を抱えており、次の手順で解決しました:

次の端末コマンドを実行します

  1. npm cache clean --force
  2. http_proxy =を設定します
  3. https_proxy =を設定します
  4. 糸構成削除プロキシ
  5. Npm config rm https-proxy
  6. Npm config rmプロキシ
  7. 端末を再起動します
  8. 糸– network-timeout 100000
  9. 端末を再起動します

それは私のために働いた。

0
Avinash Kesari