.yarnrc

.yarnrc ファイルにより、Yarn に追加の機能を構成することができます。 config コマンド もこれらのオプションを設定するのに使用できます。 Yarn は .yarnrc ファイルをファイルツリーにマージします。

yarn-offline-mirror

yarn-offline-mirror "./packages-cache"

より再現性と信頼性のあるビルドを行うために、パッケージのオフラインコピーを維持します。詳細はこちらを参照してください

値は相対パスである必要があり、もしくは false でミラーを無効にします(デフォルトの設定)。

yarn-offline-mirror-pruning

yarn-offline-mirror-pruning true

オフラインミラーの自動削除を制御します。詳細はこちらを参照してください

値はブール値で、デフォルトは false です。

yarn-path

yarn-path "./bin/yarn"

Instructs yarn to defer to another Yarn binary for execution. Useful if you want to bundle Yarn into your repository and have everyone use the same version for consistency. This was introduced in Yarn 1.0, so all developers must have Yarn >= 1.0 installed.

Value must be a relative file path, or false to disable (default).

disable-self-update-check

disable-self-update-check true

When installing packages, Yarn will provide upgrade instructions if you have an outdated CLI installation. You can disable this check here.

値はブール値で、デフォルトは false です。

child-concurrency

child-concurrency #number#

node モジュールをビルドするための並列実行する、子プロセスの数を制御します。

この数字を1に設定することで node モジュールは順番にビルドされ、windows で node-gyp を使用した際のエラーを避けることができます。

CLI arguments

Setting --<command>.<flag> <value> in .yarnrc would be the same as running yarn <command> --<flag> <value>.

例:

$> cat .yarnrc
--install.check-files true

Is the same running yarn install --check-files

Example 2:

$> cat .yarnrc
--cache-folder /tmp/yarn-cache/

$> yarn cache dir
/tmp/yarn-cache/v1