diff --git a/CHANGELOG.md b/CHANGELOG.md index ed347f813..3fc8be2b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [[5.7.1](https://github.com/multiversx/mx-sdk-dapp/pull/1735)] - 2026-07-13 +- [Migrate Yarn to pnpm](https://github.com/multiversx/mx-sdk-dapp/pull/1736) - [Update Ledger Provider to 8.2.0](https://github.com/multiversx/mx-sdk-dapp/pull/1734) ## [[5.7.0](https://github.com/multiversx/mx-sdk-dapp/pull/1733)] - 2026-07-02 diff --git a/README.md b/README.md index 9f34a1495..d34c77b4b 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ See [Template dApp](https://template-dapp.multiversx.com/) for live demo or chec ## Installation -The library can be installed via npm or yarn. +The library can be installed via npm or pnpm. ```bash npm install @multiversx/sdk-dapp @@ -49,7 +49,7 @@ npm install @multiversx/sdk-dapp or ```bash -yarn add @multiversx/sdk-dapp +pnpm add @multiversx/sdk-dapp ``` > **Note:** Make sure you run your app on `https`, not `http`, otherwise some providers will not work. diff --git a/scripts/template-dapps-integration.sh b/scripts/template-dapps-integration.sh index 30139cb42..2dfefbbf0 100644 --- a/scripts/template-dapps-integration.sh +++ b/scripts/template-dapps-integration.sh @@ -38,13 +38,13 @@ echo "git checkout development..." git checkout development echo "Installing dependencies mx-template-dapp..." -yarn install +pnpm install --frozen-lockfile echo "Linking mx-sdk-dapp..." yalc add @multiversx/sdk-dapp echo "Building mx-template-dapp..." -yarn build-devnet +pnpm build-devnet # Consume mx-sdk-dapp in mx-template-dapp-nextjs @@ -54,12 +54,12 @@ echo "cd mx-template-dapp-nextjs..." cd mx-template-dapp-nextjs echo "Installing dependencies mx-template-dapp-nextjs..." -yarn install +pnpm install --frozen-lockfile echo "Linking mx-sdk-dapp..." yalc add @multiversx/sdk-dapp echo "Building mx-template-dapp-nextjs..." -yarn build:devnet +pnpm build:devnet echo "Script executed successfully!"