Published on

npm ciに相当するyarnのコマンド

Authors
  • avatar
    Name
    ssu
    Twitter

npm ciではciなどでnpm installする場合に使われるもので、 一度環境をクリーンにしてから、installされるものです。

yarnにもそれに相当するコマンドがあります。versionごとに少し異なるので、注意が必要です。 yarnのバージョンが2未満の場合には、

yarn install --frozen-lockfile

rm -rf node_modules && yarn install --frozen-lockfile

を行うことで、npm ciと同じことができます。

また、yarnのversionが2以上の場合には、下記を実行したら良いです。

yarn install --immutable --immutable-cache --check-cache

参考: yarn install

参考: npm ci

参考: what-is-the-closest-to-npm-ci-in-yarn