@fleet-sdk/serializer 0.2.0 → 0.2.2
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,22 @@
|
|
1
1
|
# @fleet-sdk/serializer
|
2
2
|
|
3
|
+
## 0.2.2
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [9cbd414]
|
8
|
+
- @fleet-sdk/common@0.2.2
|
9
|
+
- @fleet-sdk/crypto@0.2.2
|
10
|
+
|
11
|
+
## 0.2.1
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- edf2830: Fix module exporting.
|
16
|
+
- Updated dependencies [edf2830]
|
17
|
+
- @fleet-sdk/common@0.2.1
|
18
|
+
- @fleet-sdk/crypto@0.2.1
|
19
|
+
|
3
20
|
## 0.2.0
|
4
21
|
|
5
22
|
### Minor Changes
|
@@ -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.
|
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.
|
3
|
+
"version": "0.2.2",
|
4
4
|
"description": "Ergo constant serializer and parser.",
|
5
|
-
"main": "./dist/index.js",
|
6
|
-
"module": "./dist/index.
|
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.
|
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.
|
27
|
-
"@fleet-sdk/crypto": "^0.2.
|
26
|
+
"@fleet-sdk/common": "^0.2.2",
|
27
|
+
"@fleet-sdk/crypto": "^0.2.2"
|
28
28
|
},
|
29
29
|
"engines": {
|
30
30
|
"node": ">=14"
|
@@ -40,7 +40,6 @@
|
|
40
40
|
"README.md"
|
41
41
|
],
|
42
42
|
"scripts": {
|
43
|
-
"build": "
|
44
|
-
"build:cjs": "tsup"
|
43
|
+
"build": "tsup --config ../../tsup.config.ts"
|
45
44
|
}
|
46
45
|
}
|
File without changes
|
File without changes
|