@fleet-sdk/common 0.2.0 → 0.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @fleet-sdk/common
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - edf2830: Fix module exporting.
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
@@ -601,4 +601,4 @@ exports.utxoDiff = utxoDiff;
601
601
  exports.utxoFilter = utxoFilter;
602
602
  exports.utxoSum = utxoSum;
603
603
  //# sourceMappingURL=out.js.map
604
- //# sourceMappingURL=index.js.map
604
+ //# sourceMappingURL=index.cjs.js.map
@@ -548,4 +548,4 @@ var Collection = class {
548
548
 
549
549
  export { AddressType, Collection, Network, _0n, _10n, _127n, _128n, _1n, _63n, _7n, areEqual, areEqualBy, areRegistersDenselyPacked, assert, assertInstanceOf, assertTypeOf, at, byteSizeOf, chunk, clearUndefined, concatBytes, decimalize, depthOf, endsWith, ensureBigInt, ensureDefaults, ensureUTxOBigInt, ergoTreeHeaderFlags, first, hasDuplicates, hasDuplicatesBy, hasKey, isDefined, isEmpty, isFalsy, isHex, isTruthy, isUndefined, last, max, min, orderBy, percent, some, startsWith, sumBy, undecimalize, uniq, uniqBy, utxoDiff, utxoFilter, utxoSum };
550
550
  //# sourceMappingURL=out.js.map
551
- //# sourceMappingURL=index.mjs.map
551
+ //# sourceMappingURL=index.esm.js.map
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fleet-sdk/common",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Internal utility functions, constants and types shared across @fleet-sdk packages.",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
5
+ "main": "./dist/index.cjs.js",
6
+ "module": "./dist/index.esm.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
- "require": "./dist/index.js",
10
- "import": "./dist/index.mjs"
9
+ "require": "./dist/index.cjs.js",
10
+ "import": "./dist/index.esm.js"
11
11
  },
12
12
  "sideEffects": true,
13
13
  "repository": "fleet-sdk/fleet",
@@ -34,6 +34,6 @@
34
34
  "README.md"
35
35
  ],
36
36
  "scripts": {
37
- "build": "tsup"
37
+ "build": "tsup --config ../../tsup.config.ts"
38
38
  }
39
39
  }
File without changes
File without changes