@msafe/sui-app-store 0.0.25 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msafe/sui-app-store",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "MSafe Sui app store repository",
5
5
  "author": "Momentum Safe",
6
6
  "license": "MIT",
@@ -22,10 +22,8 @@
22
22
  ],
23
23
  "scripts": {
24
24
  "clean": "rm -rf ./dist",
25
- "build": "yarn clean && yarn _build:browser && yarn _build:node",
25
+ "build": "yarn clean && tsup --platform browser --format cjs,esm --minify --dts",
26
26
  "build-yalc": "yarn build && yalc publish --private",
27
- "_build:browser": "tsup --platform browser --format iife --global-name MSafeWallet --minify",
28
- "_build:node": "tsup --format cjs,esm --dts",
29
27
  "test": "jest",
30
28
  "coverage": "jest --coverage"
31
29
  },