create-ton
Advanced tools
Comparing version 0.6.0 to 0.7.0
@@ -8,2 +8,8 @@ # Changelog | ||
## [0.7.0] - 2023-08-20 | ||
### Changed | ||
- Changed template ton-core dependency to ^0.51.0, ton to ~13.6.0, which fixes dependency tree problems | ||
## [0.6.0] - 2023-08-08 | ||
@@ -10,0 +16,0 @@ |
@@ -17,4 +17,4 @@ { | ||
"prettier": "^2.8.6", | ||
"ton": "^13.4.1", | ||
"ton-core": "^0.49.0", | ||
"ton": "~13.6.0", | ||
"ton-core": "^0.51.0", | ||
"ton-crypto": "^3.2.0", | ||
@@ -21,0 +21,0 @@ "ts-jest": "^29.0.5", |
{ | ||
"name": "create-ton", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Tool to quickly create TON projects", |
@@ -5,2 +5,17 @@ # npm create ton | ||
For README please go to https://github.com/ton-community/blueprint | ||
## Usage | ||
```bash | ||
npm create ton | ||
``` | ||
(or using other package managers) | ||
If you want to input data non-interactively (for example, in scripts), do: | ||
```bash | ||
npm create ton -- project-dir --type first-contract-type --contractName FirstContractName | ||
``` | ||
where `first-contract-type` can currently be one of `func-empty`, `func-counter`, `tact-empty`, `tact-counter` | ||
For more details please go to https://github.com/ton-org/blueprint |
48041
21