create-ton 0.6.0 → 0.7.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,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.7.0] - 2023-08-20
9
+
10
+ ### Changed
11
+
12
+ - Changed template ton-core dependency to ^0.51.0, ton to ~13.6.0, which fixes dependency tree problems
13
+
8
14
  ## [0.6.0] - 2023-08-08
9
15
 
10
16
  ### Added
package/README.md CHANGED
@@ -2,4 +2,19 @@
2
2
 
3
3
  This is an entry point script for the Blueprint development tool
4
4
 
5
- For README please go to https://github.com/ton-community/blueprint
5
+ ## Usage
6
+
7
+ ```bash
8
+ npm create ton
9
+ ```
10
+
11
+ (or using other package managers)
12
+
13
+ If you want to input data non-interactively (for example, in scripts), do:
14
+
15
+ ```bash
16
+ npm create ton -- project-dir --type first-contract-type --contractName FirstContractName
17
+ ```
18
+ where `first-contract-type` can currently be one of `func-empty`, `func-counter`, `tact-empty`, `tact-counter`
19
+
20
+ For more details please go to https://github.com/ton-org/blueprint
@@ -14,8 +14,8 @@
14
14
  "@types/node": "^20.2.5",
15
15
  "jest": "^29.5.0",
16
16
  "prettier": "^2.8.6",
17
- "ton": "^13.4.1",
18
- "ton-core": "^0.49.0",
17
+ "ton": "~13.6.0",
18
+ "ton-core": "^0.51.0",
19
19
  "ton-crypto": "^3.2.0",
20
20
  "ts-jest": "^29.0.5",
21
21
  "ts-node": "^10.9.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",