create-ton 0.23.0 → 0.24.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,16 @@ 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.24.0] - 2025-05-02
9
+
10
+ ### Added
11
+
12
+ - Tact contracts are now built before test run
13
+
14
+ ### Changed
15
+
16
+ - Updated template dependencies
17
+
8
18
  ## [0.23.0] - 2025-04-24
9
19
 
10
20
  ### 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",
11
+ "@ton/blueprint": ">=0.32.0",
12
12
  "@ton/sandbox": ">=0.28.0",
13
- "@ton/test-utils": ">=0.5.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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.23.0",
3
+ "version": "0.24.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",