Skip to content

Commit 83472e8

Browse files
committed
Change --pure-lockfile to --frozen-lockfile
Signed-off-by: Phillip Rak <rak.phillip@gmail.com>
1 parent a2076fd commit 83472e8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/build-e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ OUTPUT_DIR="${E2E_BUILD_DIST_DIR:-dist}"
2828

2929
if [ "$BUILD_DASHBOARD" == "true" ]; then
3030
echo "Building production build for e2e ..."
31-
yarn --pure-lockfile install
31+
yarn install --frozen-lockfile
3232

3333
source scripts/version
3434
echo "BRANCH: ${COMMIT_BRANCH:-<none>}"

scripts/build-embedded

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
cd $(dirname $0)/..
1212

1313
echo "Bootstrapping..."
14-
yarn --pure-lockfile install
14+
yarn install --frozen-lockfile
1515

1616
source scripts/version
1717
echo "BRANCH: ${COMMIT_BRANCH:-<none>}"

scripts/build-hosted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010
cd $(dirname $0)/..
1111

1212
echo "Bootstrapping..."
13-
yarn --pure-lockfile install
13+
yarn install --frozen-lockfile
1414

1515
source scripts/version
1616
echo "BRANCH: ${COMMIT_BRANCH:-<none>}"

0 commit comments

Comments
 (0)