Skip to content

Commit

Permalink
feat: fuller debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
krigga committed Aug 18, 2024
1 parent 3ed1d12 commit 9b9f55c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ton/blueprint",
"version": "0.23.0-debugger.0",
"version": "0.23.0-debugger.1",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": "./dist/cli/cli.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"@tact-lang/compiler": "^1.4.0",
"@ton-community/func-js": "^0.8.0-debuginfo.0",
"@ton-community/func-js": "^0.8.0-debuginfo.1",
"@tonconnect/sdk": "^2.2.0",
"arg": "^5.0.2",
"chalk": "^4.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/compile/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
CompilerConfig as FuncCompilerConfig,
compilerVersion,
SourcesArray,
DebugInfoEntry,
DebugInfo,
} from '@ton-community/func-js';
import { existsSync, readFileSync } from 'fs';
import path from 'path';
Expand Down Expand Up @@ -42,7 +42,7 @@ export type FuncCompileResult = {
targets: string[];
snapshot: SourcesArray;
version: string;
debugInfo?: DebugInfoEntry[];
debugInfo?: DebugInfo;
};

async function doCompileFunc(config: FuncCompilerConfig): Promise<FuncCompileResult> {
Expand Down
20 changes: 10 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -188,22 +188,22 @@ __metadata:
languageName: node
linkType: hard

"@ton-community/func-js-bin@npm:0.4.4-debuginfo.0":
version: 0.4.4-debuginfo.0
resolution: "@ton-community/func-js-bin@npm:0.4.4-debuginfo.0"
checksum: 10/841de2e839b36b0b52702c4ab34cc8e559bbd24029eae66d63f14352ea9d6c25fadb9a1a3fcbde5c0e485a61ef39298d40f02b505a63a671dfb5adc1c3ba0735
"@ton-community/func-js-bin@npm:0.4.4-debuginfo.1":
version: 0.4.4-debuginfo.1
resolution: "@ton-community/func-js-bin@npm:0.4.4-debuginfo.1"
checksum: 10/ed0fb81f016f16f3c493133c5d62a3456b7d5415e21036d78faa20bda44378665a110e770602f554de76ac4c09d92e61dede225abb2f1d1a245016e6624a4fad
languageName: node
linkType: hard

"@ton-community/func-js@npm:^0.8.0-debuginfo.0":
version: 0.8.0-debuginfo.0
resolution: "@ton-community/func-js@npm:0.8.0-debuginfo.0"
"@ton-community/func-js@npm:^0.8.0-debuginfo.1":
version: 0.8.0-debuginfo.1
resolution: "@ton-community/func-js@npm:0.8.0-debuginfo.1"
dependencies:
"@ton-community/func-js-bin": "npm:0.4.4-debuginfo.0"
"@ton-community/func-js-bin": "npm:0.4.4-debuginfo.1"
arg: "npm:^5.0.2"
bin:
func-js: dist/cli.js
checksum: 10/1e6f8a525fc3a5c3bb625e3c76d0fd53078b1bf98cdea21cff8a707b3275651e7ff2d015760916b100f3650c53f4e8a18bb2a7b63a98034581e4c0e4fc4601ce
checksum: 10/efc843ee54bece82288dcc91ce5bff2e6cf62029de66245ce2b83dc33a4c1af41a65f672bc76089c3127fc67984a61b0a6c9f86ab3d42df55debaec60c44d86d
languageName: node
linkType: hard

Expand All @@ -213,7 +213,7 @@ __metadata:
dependencies:
"@orbs-network/ton-access": "npm:^2.3.3"
"@tact-lang/compiler": "npm:^1.4.0"
"@ton-community/func-js": "npm:^0.8.0-debuginfo.0"
"@ton-community/func-js": "npm:^0.8.0-debuginfo.1"
"@ton/core": "npm:^0.56.0"
"@ton/crypto": "npm:^3.2.0"
"@ton/ton": "npm:^13.11.0"
Expand Down

0 comments on commit 9b9f55c

Please sign in to comment.