@ton/blueprint 0.27.0 → 0.29.0

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,18 @@ 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.29.0] - 2025-03-02
9
+
10
+ ### Changed
11
+
12
+ - Tolk's stderr is now printed on successful builds
13
+
14
+ ## [0.28.0] - 2025-01-17
15
+
16
+ ### Changed
17
+
18
+ - Moved compilers to peer dependencies, allowing end users to use their preferred versions of compilers
19
+
8
20
  ## [0.27.0] - 2024-12-18
9
21
 
10
22
  ### Changed
package/dist/build.js CHANGED
@@ -39,6 +39,9 @@ async function buildOne(contract, ui) {
39
39
  hex: cell.toBoc().toString('hex'),
40
40
  };
41
41
  ui?.clearActionPrompt();
42
+ if (result.lang === 'tolk') {
43
+ ui?.write(`\n${result.stderr}`);
44
+ }
42
45
  ui?.write('\n✅ Compiled successfully! Cell BOC result:\n\n');
43
46
  ui?.write(JSON.stringify(res, null, 2));
44
47
  await promises_1.default.mkdir(paths_1.BUILD_DIR, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.27.0",
3
+ "version": "0.29.0",
4
4
  "description": "Framework for development of TON smart contracts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli/cli.js",
@@ -19,8 +19,11 @@
19
19
  "format": "prettier --write src"
20
20
  },
21
21
  "devDependencies": {
22
+ "@tact-lang/compiler": "^1.5.3",
23
+ "@ton-community/func-js": "^0.9.0",
22
24
  "@ton/core": "^0.59.0",
23
25
  "@ton/crypto": "^3.3.0",
26
+ "@ton/tolk-js": "^0.6.0",
24
27
  "@ton/ton": "^15.0.0",
25
28
  "@types/inquirer": "^8.2.6",
26
29
  "@types/node": "^20.2.5",
@@ -29,16 +32,16 @@
29
32
  "typescript": "^4.9.5"
30
33
  },
31
34
  "peerDependencies": {
35
+ "@tact-lang/compiler": ">=1.5.3",
36
+ "@ton-community/func-js": ">=0.9.0",
32
37
  "@ton/core": ">=0.59.0",
33
38
  "@ton/crypto": ">=3.3.0",
39
+ "@ton/tolk-js": ">=0.6.0",
34
40
  "@ton/ton": ">=15.0.0"
35
41
  },
36
42
  "dependencies": {
37
- "@tact-lang/compiler": "^1.4.0",
38
43
  "@ton-api/client": "^0.2.0",
39
44
  "@ton-api/ton-adapter": "^0.2.0",
40
- "@ton-community/func-js": "^0.9.0",
41
- "@ton/tolk-js": "^0.6.0",
42
45
  "@tonconnect/sdk": "^2.2.0",
43
46
  "arg": "^5.0.2",
44
47
  "axios": "^1.7.7",