@ton/sandbox 0.37.1 → 0.37.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
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.37.2] - 2025-09-23
9
+
10
+ ### Fixed
11
+
12
+ - Fixed coverage by updating `ton-assembly`
13
+ - Fixed `requireOptional` typing
14
+
8
15
  ## [0.37.1] - 2025-09-03
9
16
 
10
17
  ### Fixed
@@ -1 +1 @@
1
- export declare function requireOptional(id: string): ReturnType<typeof require> | undefined;
1
+ export declare function requireOptional(id: string): any | undefined;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.requireOptional = requireOptional;
4
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
4
5
  function requireOptional(id) {
5
6
  try {
6
7
  // eslint-disable-next-line @typescript-eslint/no-require-imports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/sandbox",
3
- "version": "0.37.1",
3
+ "version": "0.37.2",
4
4
  "description": "TON transaction emulator",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
@@ -64,6 +64,6 @@
64
64
  "chalk": "^4.1.2",
65
65
  "fflate": "^0.8.2",
66
66
  "table": "^6.9.0",
67
- "ton-assembly": "0.1.0"
67
+ "ton-assembly": "0.1.2"
68
68
  }
69
69
  }