@fleet-sdk/serializer 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,14 @@
1
1
  # @fleet-sdk/serializer
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - edf2830: Fix module exporting.
8
+ - Updated dependencies [edf2830]
9
+ - @fleet-sdk/common@0.2.1
10
+ - @fleet-sdk/crypto@0.2.1
11
+
3
12
  ## 0.2.0
4
13
 
5
14
  ### Minor Changes
@@ -971,4 +971,4 @@ exports.parse = parse;
971
971
  exports.serializeBox = serializeBox;
972
972
  exports.serializeTransaction = serializeTransaction;
973
973
  //# sourceMappingURL=out.js.map
974
- //# sourceMappingURL=index.js.map
974
+ //# sourceMappingURL=index.cjs.js.map
@@ -934,4 +934,4 @@ function getDistinctTokenIds(outputs) {
934
934
 
935
935
  export { DataSerializer, SBigInt, SBigIntType, SBool, SBoolType, SByte, SByteType, SColl, SCollType, SConstant, SGenericType, SGroupElement, SGroupElementType, SInt, SIntType, SLong, SLongType, SMonomorphicType, SPair, SPrimitiveType, SShort, SShortType, SSigmaProp, SSigmaPropType, STupleType, SType, SUnit, SUnitType, TypeSerializer, estimateBoxSize, estimateVLQSize, isColl, isTuple, parse, serializeBox, serializeTransaction };
936
936
  //# sourceMappingURL=out.js.map
937
- //# sourceMappingURL=index.mjs.map
937
+ //# sourceMappingURL=index.esm.js.map
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fleet-sdk/serializer",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Ergo constant serializer and parser.",
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": false,
13
13
  "repository": "fleet-sdk/fleet",
@@ -23,8 +23,8 @@
23
23
  "serialization"
24
24
  ],
25
25
  "dependencies": {
26
- "@fleet-sdk/common": "^0.2.0",
27
- "@fleet-sdk/crypto": "^0.2.0"
26
+ "@fleet-sdk/common": "^0.2.1",
27
+ "@fleet-sdk/crypto": "^0.2.1"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=14"
@@ -40,7 +40,6 @@
40
40
  "README.md"
41
41
  ],
42
42
  "scripts": {
43
- "build": "run-p build:*",
44
- "build:cjs": "tsup"
43
+ "build": "tsup --config ../../tsup.config.ts"
45
44
  }
46
45
  }
File without changes
File without changes