create-ton 0.9.0 → 0.11.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 +12 -0
- package/dist/cli.js +2 -0
- package/dist/template/package.json +14 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.11.0] - 2024-01-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated template dependencies: blueprint, sandbox, others to their latest versions
|
|
13
|
+
|
|
14
|
+
## [0.10.0] - 2023-12-01
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Updated template dependencies: blueprint, sandbox, test-utils, ton, ton-core, ton-crypto to their latest @ton versions
|
|
19
|
+
|
|
8
20
|
## [0.9.0] - 2023-08-28
|
|
9
21
|
|
|
10
22
|
### Removed
|
package/dist/cli.js
CHANGED
|
@@ -80,6 +80,8 @@ async function main() {
|
|
|
80
80
|
await fs_extra_1.default.writeFile(path_1.default.join(projectPath, '.gitignore'), `node_modules
|
|
81
81
|
temp
|
|
82
82
|
build
|
|
83
|
+
dist
|
|
84
|
+
.DS_Store
|
|
83
85
|
`);
|
|
84
86
|
for (const file of FILES_WITH_NAME_TEMPLATE) {
|
|
85
87
|
await fs_extra_1.default.writeFile(path_1.default.join(projectPath, file), (await fs_extra_1.default.readFile(path_1.default.join(basePath, file))).toString().replace(NAME_TEMPLATE, name));
|
|
@@ -4,21 +4,21 @@
|
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "blueprint run",
|
|
6
6
|
"build": "blueprint build",
|
|
7
|
-
"test": "jest"
|
|
7
|
+
"test": "jest --verbose"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@ton
|
|
11
|
-
"@ton
|
|
12
|
-
"@ton
|
|
13
|
-
"@types/jest": "^29.5.
|
|
14
|
-
"@types/node": "^20.
|
|
15
|
-
"jest": "^29.
|
|
16
|
-
"prettier": "^2.
|
|
17
|
-
"ton": "
|
|
18
|
-
"ton
|
|
19
|
-
"ton
|
|
20
|
-
"ts-jest": "^29.
|
|
21
|
-
"ts-node": "^10.9.
|
|
22
|
-
"typescript": "^
|
|
10
|
+
"@ton/blueprint": "^0.15.0",
|
|
11
|
+
"@ton/sandbox": "^0.15.0",
|
|
12
|
+
"@ton/test-utils": "^0.4.2",
|
|
13
|
+
"@types/jest": "^29.5.11",
|
|
14
|
+
"@types/node": "^20.11.7",
|
|
15
|
+
"jest": "^29.7.0",
|
|
16
|
+
"prettier": "^3.2.4",
|
|
17
|
+
"@ton/ton": "^13.9.0",
|
|
18
|
+
"@ton/core": "^0.53.0",
|
|
19
|
+
"@ton/crypto": "^3.2.0",
|
|
20
|
+
"ts-jest": "^29.1.2",
|
|
21
|
+
"ts-node": "^10.9.2",
|
|
22
|
+
"typescript": "^5.3.3"
|
|
23
23
|
}
|
|
24
24
|
}
|