create-ton 0.23.0 → 0.25.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,22 @@ 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.25.0] - 2025-05-16
9
+
10
+ ### Changed
11
+
12
+ - Updated template dependencies
13
+
14
+ ## [0.24.0] - 2025-05-02
15
+
16
+ ### Added
17
+
18
+ - Tact contracts are now built before test run
19
+
20
+ ### Changed
21
+
22
+ - Updated template dependencies
23
+
8
24
  ## [0.23.0] - 2025-04-24
9
25
 
10
26
  ### Changed
@@ -2,6 +2,7 @@ import type { Config } from 'jest';
2
2
 
3
3
  const config: Config = {
4
4
  preset: 'ts-jest',
5
+ globalSetup: './jest.setup.ts',
5
6
  testEnvironment: 'node',
6
7
  testPathIgnorePatterns: ['/node_modules/', '/dist/'],
7
8
  };
@@ -0,0 +1,5 @@
1
+ import { buildAllTact } from '@ton/blueprint';
2
+
3
+ export default async function () {
4
+ await buildAllTact();
5
+ }
@@ -8,9 +8,9 @@
8
8
  "test": "jest --verbose"
9
9
  },
10
10
  "devDependencies": {
11
- "@ton/blueprint": ">=0.31.1",
12
- "@ton/sandbox": ">=0.28.0",
13
- "@ton/test-utils": ">=0.5.0",
11
+ "@ton/blueprint": ">=0.33.0",
12
+ "@ton/sandbox": ">=0.30.0",
13
+ "@ton/test-utils": ">=0.6.0",
14
14
  "@types/jest": "^29.5.14",
15
15
  "@types/node": "^22.14.1",
16
16
  "jest": "^29.7.0",
@@ -21,8 +21,8 @@
21
21
  "ts-jest": "^29.3.2",
22
22
  "ts-node": "^10.9.2",
23
23
  "typescript": "^5.8.3",
24
- "@ton/tolk-js": ">=0.11.0",
25
- "@tact-lang/compiler": ">=1.6.6 <2.0.0",
24
+ "@ton/tolk-js": ">=0.12.0",
25
+ "@tact-lang/compiler": ">=1.6.10 <2.0.0",
26
26
  "@ton-community/func-js": ">=0.9.1"
27
27
  }
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.23.0",
3
+ "version": "0.25.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",