create-ton 0.25.0 → 0.26.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,13 @@ 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.26.0] - 2025-05-20
9
+
10
+ ### Changed
11
+
12
+ - Template now uses `@ton/sandbox/jest-environment` and `@ton/sandbox/jest-reporter` in jest config for the new `blueprint snapshot` and `blueprint test --gas-report` features
13
+ - Update template to allow wrappers publishing
14
+
8
15
  ## [0.25.0] - 2025-05-16
9
16
 
10
17
  ### Changed
package/dist/cli.js CHANGED
@@ -95,6 +95,7 @@ temp
95
95
  build
96
96
  dist
97
97
  .DS_Store
98
+ package.ts
98
99
 
99
100
  # VS Code
100
101
  .vscode/*
@@ -3,8 +3,14 @@ import type { Config } from 'jest';
3
3
  const config: Config = {
4
4
  preset: 'ts-jest',
5
5
  globalSetup: './jest.setup.ts',
6
- testEnvironment: 'node',
6
+ cache: false, // disabled caching to prevent old Tact files from being used after a rebuild
7
+ testEnvironment: '@ton/sandbox/jest-environment',
7
8
  testPathIgnorePatterns: ['/node_modules/', '/dist/'],
9
+ reporters: [
10
+ 'default',
11
+ ['@ton/sandbox/jest-reporter', {
12
+ }],
13
+ ]
8
14
  };
9
15
 
10
16
  export default config;
@@ -5,18 +5,21 @@
5
5
  "bp": "blueprint",
6
6
  "start": "blueprint run",
7
7
  "build": "blueprint build",
8
- "test": "jest --verbose"
8
+ "test": "jest --verbose",
9
+ "release": "blueprint pack && npm publish --access public"
10
+ },
11
+ "dependencies": {
12
+ "@ton/core": "~0"
9
13
  },
10
14
  "devDependencies": {
11
- "@ton/blueprint": ">=0.33.0",
12
- "@ton/sandbox": ">=0.30.0",
15
+ "@ton/blueprint": ">=0.34.0",
16
+ "@ton/sandbox": ">=0.31.0",
13
17
  "@ton/test-utils": ">=0.6.0",
14
18
  "@types/jest": "^29.5.14",
15
19
  "@types/node": "^22.14.1",
16
20
  "jest": "^29.7.0",
17
21
  "prettier": "^3.5.3",
18
22
  "@ton/ton": ">=15.2.1 <16.0.0",
19
- "@ton/core": "~0",
20
23
  "@ton/crypto": "^3.3.0",
21
24
  "ts-jest": "^29.3.2",
22
25
  "ts-node": "^10.9.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",