4

会社のプライベート npm パッケージを yarn でインストールする必要があります - どうすればよいですか?

npm ログイン認証トークンを設定しましたが、役に立ちません。プライベート npm パッケージは常に 404 not found などのエラーで終了します。

yarn add @private/my-private-pacakge

動作しませんが、この npm コマンドは動作します:

npm install @private/my-private-package

動作します - トークンを使用して yarn config registry/auth を設定しようとしましたが、注意が役立ちます。

エラー:

Error: https://registry.npmjs.org/@private/my-private-package/-/my-private-package-0.0.5.tgz: Request failed "404 Not Found"
      at Request.res (/..../........./.yarn/updates/0.18.1/lib/fetchers/tarball-fetcher.js:231:20)
4

2 に答える 2

3

So my problem was with bad configuration I had strict-ssl config to false and registry config to http rather than https.

于 2016-12-26T18:07:24.723 に答える