@taquito/michelson-encoder 24.3.0-beta.1 → 24.3.0-beta.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.
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
5
5
  exports.VERSION = {
6
- "commitHash": "05df48fee92f846cba793920d6fa829afd6a1847",
7
- "version": "24.3.0-beta.1"
6
+ "commitHash": "fb73f1546d3dff2fbba7741ca6006680212bef16",
7
+ "version": "24.3.0-beta.2"
8
8
  };
@@ -3951,8 +3951,8 @@ class EventSchema {
3951
3951
 
3952
3952
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
3953
3953
  const VERSION = {
3954
- "commitHash": "05df48fee92f846cba793920d6fa829afd6a1847",
3955
- "version": "24.3.0-beta.1"
3954
+ "commitHash": "fb73f1546d3dff2fbba7741ca6006680212bef16",
3955
+ "version": "24.3.0-beta.2"
3956
3956
  };
3957
3957
 
3958
3958
  export { AddressValidationError, BigMapEncodingError, BigMapValidationError, BytesValidationError, ChainIDValidationError, ContractValidationError, EncodeTicketError, EventSchema, IntValidationError, InvalidBigMapDiffError, InvalidBigMapSchemaError, InvalidMapTypeError, InvalidRpcResponseError, InvalidScriptError, KeyHashValidationError, KeyValidationError, ListValidationError, MapTypecheckError, MapValidationError, MichelsonMap, MissingArgumentError, MutezValidationError, NatValidationError, OrValidationError, ParameterEncodingError, ParameterSchema, SaplingStateValue, Schema, SetValidationError, SignatureValidationError, StorageEncodingError, Token, TokenArgumentValidationError, TokenComparisonError, UnitValue, VERSION, ViewSchema, deepEqual };
@@ -3951,8 +3951,8 @@
3951
3951
 
3952
3952
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
3953
3953
  const VERSION = {
3954
- "commitHash": "05df48fee92f846cba793920d6fa829afd6a1847",
3955
- "version": "24.3.0-beta.1"
3954
+ "commitHash": "fb73f1546d3dff2fbba7741ca6006680212bef16",
3955
+ "version": "24.3.0-beta.2"
3956
3956
  };
3957
3957
 
3958
3958
  exports.AddressValidationError = AddressValidationError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taquito/michelson-encoder",
3
- "version": "24.3.0-beta.1",
3
+ "version": "24.3.0-beta.2",
4
4
  "description": "Michelson encoding and decoding utilities for Taquito.",
5
5
  "keywords": [
6
6
  "taquito",
@@ -40,9 +40,9 @@
40
40
  "node": ">=22"
41
41
  },
42
42
  "scripts": {
43
- "test": "jest --coverage",
44
- "test:watch": "jest --coverage --watch",
45
- "test:prod": "npm run lint && npm run test -- --no-cache",
43
+ "test": "vitest run --config ./vitest.config.ts",
44
+ "test:watch": "vitest --config ./vitest.config.ts",
45
+ "test:prod": "npm run lint && npm run test",
46
46
  "lint": "eslint --ext .js,.ts .",
47
47
  "precommit": "lint-staged",
48
48
  "prebuild": "rimraf dist",
@@ -56,48 +56,23 @@
56
56
  "eslint --fix"
57
57
  ]
58
58
  },
59
- "jest": {
60
- "transform": {
61
- ".(ts|tsx)": "ts-jest"
62
- },
63
- "testEnvironment": "node",
64
- "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
65
- "moduleFileExtensions": [
66
- "ts",
67
- "tsx",
68
- "js"
69
- ],
70
- "moduleNameMapper": {
71
- "^@taquito/utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
72
- },
73
- "coveragePathIgnorePatterns": [
74
- "/node_modules/",
75
- "/test/"
76
- ],
77
- "collectCoverageFrom": [
78
- "src/**/*.{js,ts}"
79
- ]
80
- },
81
59
  "dependencies": {
82
- "@taquito/core": "^24.3.0-beta.1",
83
- "@taquito/rpc": "^24.3.0-beta.1",
84
- "@taquito/signer": "^24.3.0-beta.1",
85
- "@taquito/utils": "^24.3.0-beta.1",
60
+ "@taquito/core": "^24.3.0-beta.2",
61
+ "@taquito/rpc": "^24.3.0-beta.2",
62
+ "@taquito/signer": "^24.3.0-beta.2",
63
+ "@taquito/utils": "^24.3.0-beta.2",
86
64
  "bignumber.js": "^9.1.2",
87
65
  "fast-json-stable-stringify": "^2.1.0"
88
66
  },
89
67
  "devDependencies": {
90
68
  "@types/bluebird": "^3.5.42",
91
- "@types/jest": "^29.5.12",
92
- "@types/node": "^20",
69
+ "@types/node": "^22.0.0",
93
70
  "@typescript-eslint/eslint-plugin": "^6.21.0",
94
71
  "@typescript-eslint/parser": "^6.21.0",
95
72
  "colors": "^1.4.0",
96
73
  "coveralls": "^3.1.1",
97
74
  "cross-env": "^7.0.3",
98
75
  "eslint": "^8.57.0",
99
- "jest": "^29.7.0",
100
- "jest-config": "^29.7.0",
101
76
  "lint-staged": "^15.2.7",
102
77
  "lodash.camelcase": "^4.3.0",
103
78
  "prettier": "^3.3.3",
@@ -109,7 +84,6 @@
109
84
  "rollup-plugin-polyfill-node": "^0.13.0",
110
85
  "rollup-plugin-typescript2": "^0.36.0",
111
86
  "shelljs": "^0.8.5",
112
- "ts-jest": "^29.2.3",
113
87
  "ts-node": "^10.9.2",
114
88
  "ts-toolbelt": "^9.6.0",
115
89
  "typescript": "^5.9.3"