@solana/codecs-numbers 2.0.0-experimental.ba46ce1 → 2.0.0-experimental.bfaffe0
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/dist/index.native.js +2 -0
- package/package.json +4 -4
package/dist/index.native.js
CHANGED
|
@@ -299,3 +299,5 @@ var getU8Decoder = (options = {}) => numberDecoderFactory({
|
|
|
299
299
|
var getU8Codec = (options = {}) => combineCodec(getU8Encoder(options), getU8Decoder(options));
|
|
300
300
|
|
|
301
301
|
export { Endian, assertNumberIsBetweenForCodec, getF32Codec, getF32Decoder, getF32Encoder, getF64Codec, getF64Decoder, getF64Encoder, getI128Codec, getI128Decoder, getI128Encoder, getI16Codec, getI16Decoder, getI16Encoder, getI32Codec, getI32Decoder, getI32Encoder, getI64Codec, getI64Decoder, getI64Encoder, getI8Codec, getI8Decoder, getI8Encoder, getShortU16Codec, getShortU16Decoder, getShortU16Encoder, getU128Codec, getU128Decoder, getU128Encoder, getU16Codec, getU16Decoder, getU16Encoder, getU32Codec, getU32Decoder, getU32Encoder, getU64Codec, getU64Decoder, getU64Encoder, getU8Codec, getU8Decoder, getU8Encoder };
|
|
302
|
+
//# sourceMappingURL=out.js.map
|
|
303
|
+
//# sourceMappingURL=index.native.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/codecs-numbers",
|
|
3
|
-
"version": "2.0.0-experimental.
|
|
3
|
+
"version": "2.0.0-experimental.bfaffe0",
|
|
4
4
|
"description": "Codecs for numbers of different sizes and endianness",
|
|
5
5
|
"exports": {
|
|
6
6
|
"browser": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"node": ">=17.4"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@solana/codecs-core": "2.0.0-experimental.
|
|
52
|
+
"@solana/codecs-core": "2.0.0-experimental.bfaffe0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@solana/eslint-config-solana": "^1.0.2",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
|
|
91
91
|
"test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent",
|
|
92
92
|
"test:treeshakability:browser": "agadoo dist/index.browser.js",
|
|
93
|
-
"test:treeshakability:native": "agadoo dist/index.
|
|
94
|
-
"test:treeshakability:node": "agadoo dist/index.
|
|
93
|
+
"test:treeshakability:native": "agadoo dist/index.native.js",
|
|
94
|
+
"test:treeshakability:node": "agadoo dist/index.node.js",
|
|
95
95
|
"test:typecheck": "tsc --noEmit",
|
|
96
96
|
"test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent",
|
|
97
97
|
"test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent"
|