Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/sdk-dapp-sc-explorer-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
node-version: 20
registry-url: https://registry.npmjs.org/

- name: Setup yarn
run: npm install -g yarn
- name: Setup pnpm
run: npm install -g pnpm

- name: Install dependencies
run: yarn install
run: pnpm install --frozen-lockfile

- name: Build project
run: yarn build
run: pnpm build

- name: Get package info
id: package
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[0.0.6-beta.2]](https://github.com/multiversx/mx-sdk-dapp-sc-explorer/pull/38)] - 2025-12-05

- [Migrate to pnpm, update imports](https://github.com/multiversx/mx-sdk-dapp-sc-explorer/pull/36)

## [[0.0.6-beta.1]](https://github.com/multiversx/mx-sdk-dapp-sc-explorer/pull/35)] - 2025-10-16

- [Update deploy address order](https://github.com/multiversx/mx-sdk-dapp-sc-explorer/pull/35)
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Installation

The library can be installed via `npm` or `yarn`.
The library can be installed via `npm`, `yarn` or `pnpm`.

```bash
npm install @multiversx/sdk-dapp-sc-explorer
Expand All @@ -20,6 +20,12 @@ or
yarn add @multiversx/sdk-dapp-sc-explorer
```

or

```bash
pnpm install @multiversx/sdk-dapp-sc-explorer
```

# Usage

## ABI - Application Binary Interface
Expand Down
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@multiversx/sdk-dapp-sc-explorer",
"version": "0.0.6-beta.1",
"version": "0.0.6-beta.2",
"description": "A library to hold the main logic for Smart Contract Interactions on the MultiversX blockchain",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
Expand All @@ -13,14 +13,14 @@
"node": ">=20"
},
"scripts": {
"start": "yarn watch",
"start": "npm watch",
"build:esm-types": "tsc --project tsconfig.json",
"build:cjs-types": "tsc --build tsconfig.cjs.json",
"build": "rimraf dist && node esbuild.js && yarn build:esm-types && yarn build:cjs-types && cp package.json dist && cp README.md dist",
"publish-package": "yarn build && cd dist && npm publish",
"publish-package-next": "yarn build && cd dist && npm publish --tag next",
"publish-yalc": "yarn build && cd dist && yalc publish --push --sig",
"watch": "yarn node esbuild-watch.js && yarn build:esm-types && yarn build:cjs-types -- --watch"
"build": "rimraf dist && node esbuild.js && npm run build:esm-types && npm run build:cjs-types && cp package.json dist && cp README.md dist",
"publish-package": "npm build && cd dist && npm publish",
"publish-package-next": "npm build && cd dist && npm publish --tag next",
"publish-yalc": "npm build && cd dist && yalc publish --push --sig",
"watch": "npm node esbuild-watch.js && npm run build:esm-types && npm run build:cjs-types -- --watch"
},
"devDependencies": {
"@multiversx/sdk-core": "^15.x",
Expand All @@ -37,25 +37,24 @@
"esbuild-node-externals": "1.18.0",
"esbuild-plugin-svgr": "1.0.1",
"esbuild-sass-plugin": "2.2.6",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-react": "13.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"glob": "8.0.3",
"identity-obj-proxy": "3.0.0",
"msw": "1.3.2",
"node-stdlib-browser": "1.2.0",
"node-stdlib-browser": "1.3.1",
"postcss": "8.5.6",
"postcss-modules": "6.0.0",
"prettier": "3.0.3",
"rimraf": "6.1.2",
"sass": "1.66.1",
"typescript": "5.2.2"
},
Expand Down
Loading