1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-21 17:37:01 +01:00

Replace deprecated install command (#19968)

The `--frozen-lockfile` flag is not supported by Yarn v3. It has been
replaced by the Yarn v3 equivalent, which is `--immutable`.

Additionally, the `deps-install` script was deleted and this command
was inlined in the CircleCI configuration. I don't think we need to
maintain a separate script just for one command.
This commit is contained in:
Mark Stacey 2023-07-12 10:17:14 -02:30 committed by GitHub
parent 614904d362
commit 177ea83f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View File

@ -363,8 +363,7 @@ jobs:
fi
- run:
name: Install deps
command: |
.circleci/scripts/deps-install.sh
command: yarn --immutable
- save_cache:
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
paths:

View File

@ -1,9 +0,0 @@
#!/usr/bin/env bash
# Print commands and their arguments as they are executed.
set -x
# Exit immediately if a command exits with a non-zero status.
set -e
yarn install --frozen-lockfile