@ton/blueprint 0.32.0 → 0.33.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 +17 -0
- package/dist/build.js +19 -14
- package/dist/cli/Runner.js +2 -2
- package/dist/cli/build.js +4 -5
- package/dist/cli/cli.js +17 -7
- package/dist/cli/create.js +45 -15
- package/dist/cli/help.js +2 -2
- package/dist/compile/CompilerConfig.d.ts +6 -25
- package/dist/compile/CompilerConfig.js +4 -0
- package/dist/compile/SourceSnapshot.d.ts +4 -0
- package/dist/compile/SourceSnapshot.js +2 -0
- package/dist/compile/compile.d.ts +6 -31
- package/dist/compile/compile.js +54 -157
- package/dist/compile/func/compile.func.d.ts +14 -0
- package/dist/compile/func/compile.func.js +29 -0
- package/dist/compile/func/config.d.ts +11 -0
- package/dist/compile/func/config.js +2 -0
- package/dist/compile/{OverwritableVirtualFileSystem.d.ts → tact/OverwritableVirtualFileSystem.d.ts} +0 -1
- package/dist/compile/tact/compile.tact.d.ts +13 -0
- package/dist/compile/tact/compile.tact.js +123 -0
- package/dist/compile/tact/config.d.ts +7 -0
- package/dist/compile/tact/config.js +2 -0
- package/dist/compile/tolk/compile.tolk.d.ts +13 -0
- package/dist/compile/tolk/compile.tolk.js +25 -0
- package/dist/compile/tolk/config.d.ts +8 -0
- package/dist/compile/tolk/config.js +2 -0
- package/dist/config/tact.config.d.ts +5 -0
- package/dist/config/tact.config.js +21 -0
- package/dist/config/utils.js +19 -11
- package/dist/index.d.ts +2 -1
- package/dist/network/createNetworkProvider.js +2 -2
- package/dist/network/send/MnemonicProvider.d.ts +0 -1
- package/dist/template.js +2 -2
- package/dist/templates/tact/counter/scripts/deploy.ts.template +1 -1
- package/dist/templates/tact/counter/tests/spec.ts.template +1 -1
- package/dist/templates/tact/empty/tests/spec.ts.template +1 -1
- package/dist/templates/tolk/common/compilables/compile.ts.template +1 -0
- package/dist/templates/tolk/counter/contracts/contract.tolk.template +4 -4
- package/dist/templates/tolk/not-separated-common/wrappers/compile.ts.template +1 -0
- package/dist/utils/object.utils.d.ts +1 -0
- package/dist/utils/object.utils.js +5 -2
- package/dist/utils/selection.utils.d.ts +1 -0
- package/dist/utils/selection.utils.js +34 -14
- package/dist/utils/string.utils.js +2 -3
- package/dist/utils/timer.utils.js +1 -2
- package/dist/utils/ton.utils.js +2 -2
- package/package.json +4 -4
- package/dist/templates/tact/common/compilables/compile.ts.template +0 -10
- package/dist/templates/tact/common/wrappers/wrapper.ts.template +0 -2
- package/dist/templates/tact/not-separated-common/wrappers/compile.ts.template +0 -10
- package/dist/templates/tact/not-separated-common/wrappers/wrapper.ts.template +0 -2
- /package/dist/compile/{OverwritableVirtualFileSystem.js → tact/OverwritableVirtualFileSystem.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ton/blueprint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "Framework for development of TON smart contracts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "./dist/cli/cli.js",
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
"@ton-community/func-js": "^0.9.0",
|
|
24
24
|
"@ton/core": "^0.59.0",
|
|
25
25
|
"@ton/crypto": "^3.3.0",
|
|
26
|
-
"@ton/tolk-js": "^0.
|
|
26
|
+
"@ton/tolk-js": "^0.12.0",
|
|
27
27
|
"@ton/ton": "^15.0.0",
|
|
28
28
|
"@types/inquirer": "^8.2.6",
|
|
29
29
|
"@types/node": "^20.2.5",
|
|
30
30
|
"@types/qrcode-terminal": "^0.12.0",
|
|
31
31
|
"prettier": "^3.0.3",
|
|
32
|
-
"typescript": "^
|
|
32
|
+
"typescript": "^5.8.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@tact-lang/compiler": ">=1.6.5",
|
|
36
36
|
"@ton-community/func-js": ">=0.9.0",
|
|
37
37
|
"@ton/core": ">=0.59.0",
|
|
38
38
|
"@ton/crypto": ">=3.3.0",
|
|
39
|
-
"@ton/tolk-js": ">=0.
|
|
39
|
+
"@ton/tolk-js": ">=0.12.0",
|
|
40
40
|
"@ton/ton": ">=15.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
/package/dist/compile/{OverwritableVirtualFileSystem.js → tact/OverwritableVirtualFileSystem.js}
RENAMED
|
File without changes
|