@ton/blueprint 0.33.0 → 0.33.1

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,12 @@ 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.33.1] - 2025-05-16
9
+
10
+ ### Fixed
11
+
12
+ - Fixed blueprint build command failure in Tact projects
13
+
8
14
  ## [0.33.0] - 2025-05-16
9
15
 
10
16
  ### Added
@@ -41,12 +41,16 @@ exports.selectOption = selectOption;
41
41
  exports.selectFile = selectFile;
42
42
  const path_1 = __importDefault(require("path"));
43
43
  const promises_1 = __importDefault(require("fs/promises"));
44
+ const fs_1 = require("fs");
44
45
  const tact_config_1 = require("../config/tact.config");
45
46
  const compile_1 = require("../compile/compile");
46
47
  const paths_1 = require("../paths");
47
48
  const object_utils_1 = require("./object.utils");
48
49
  const findCompiles = async (directory) => {
49
50
  const dir = directory ?? (await (0, compile_1.getCompilablesDirectory)());
51
+ if (!(0, fs_1.existsSync)(dir)) {
52
+ return [];
53
+ }
50
54
  const files = await promises_1.default.readdir(dir);
51
55
  const compilables = files.filter((file) => file.endsWith(compile_1.COMPILE_END));
52
56
  return compilables.map((file) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "description": "Framework for development of TON smart contracts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli/cli.js",