- Published on
npm ciに相当するyarnのコマンド
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