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 +6 -0
- package/README.md +16 -1
- package/dist/template/package.json +2 -2
- package/package.json +1 -1
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
|
-
|
|
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
|