From 6c0bbfaf7d07589125bd8dd016229edc01df787c Mon Sep 17 00:00:00 2001 From: _XiaoTian Date: Thu, 19 May 2022 20:41:04 +0800 Subject: [PATCH] Update advanced-usage.md --- docs/advanced-usage.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index cc94131a..c5284d01 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -19,7 +19,7 @@ Ensure that `package-lock.json` is always committed, use `npm ci` instead of `np ### Yarn -Ensure that `yarn.lock` is always committed, pass `--frozen-lockfile` or `--immutable-cache` to `yarn install` when installing packages. +Ensure that `yarn.lock` is always committed, pass `--frozen-lockfile` or `--immutable` to `yarn install` when installing packages. **See also:** - [Documentation of `yarn.lock`](https://classic.yarnpkg.com/en/docs/yarn-lock) @@ -102,7 +102,8 @@ steps: with: node-version: '14' cache: 'yarn' -- run: yarn install --immutable-cache +- run: yarn install --frozen-lockfile +# - run: yarn install --immutable - run: yarn test ```