create-ton 0.4.0 → 0.5.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,14 @@ 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.5.0] - 2023-06-06
9
+
10
+ ### Changed
11
+
12
+ - Updated template's jest config to ignore the `dist` directory
13
+ - Updated template dependencies: blueprint to 0.10.0, sandbox to 0.11.0
14
+ - Updated dependencies
15
+
8
16
  ## [0.4.0] - 2023-05-04
9
17
 
10
18
  ### Changed
@@ -3,6 +3,7 @@ import type { Config } from 'jest';
3
3
  const config: Config = {
4
4
  preset: 'ts-jest',
5
5
  testEnvironment: 'node',
6
+ testPathIgnorePatterns: ['/node_modules/', '/dist/'],
6
7
  };
7
8
 
8
9
  export default config;
@@ -6,11 +6,11 @@
6
6
  "test": "jest"
7
7
  },
8
8
  "devDependencies": {
9
- "@ton-community/blueprint": "^0.9.0",
10
- "@ton-community/sandbox": "^0.10.0",
9
+ "@ton-community/blueprint": "^0.10.0",
10
+ "@ton-community/sandbox": "^0.11.0",
11
11
  "@ton-community/test-utils": "^0.2.0",
12
12
  "@types/jest": "^29.5.0",
13
- "@types/node": "^18.15.5",
13
+ "@types/node": "^20.2.5",
14
14
  "jest": "^29.5.0",
15
15
  "prettier": "^2.8.6",
16
16
  "ton": "^13.4.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",
@@ -20,8 +20,8 @@
20
20
  "devDependencies": {
21
21
  "@types/fs-extra": "^11.0.1",
22
22
  "@types/inquirer": "^8.2.6",
23
- "@types/node": "^18.15.11",
24
- "prettier": "^2.8.7",
23
+ "@types/node": "^20.2.5",
24
+ "prettier": "^2.8.8",
25
25
  "typescript": "^4.9.5"
26
26
  },
27
27
  "dependencies": {