create-ton 0.2.0 → 0.3.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,17 @@ 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.3.0] - 2023-04-07
9
+
10
+ ### Changed
11
+
12
+ - Updated template dependencies: blueprint to 0.8.0, sandbox to 0.8.0, ton-core to 0.49.0
13
+ - Updated dependencies
14
+
15
+ ### Fixed
16
+
17
+ - Fixed duplicate contract type question when using pnpm
18
+
8
19
  ## [0.2.0] - 2023-03-27
9
20
 
10
21
  ### Added
package/dist/cli.js CHANGED
@@ -94,7 +94,7 @@ build
94
94
  execCommand = 'pnpm';
95
95
  break;
96
96
  }
97
- (0, child_process_1.execSync)(`${execCommand} exec blueprint -- create ${contractName} --type ${variant}`, execOpts);
97
+ (0, child_process_1.execSync)(`${execCommand} exec blueprint${pkgManager === 'pnpm' ? '' : ' --'} create ${contractName} --type ${variant}`, execOpts);
98
98
  try {
99
99
  (0, child_process_1.execSync)('git init', execOpts);
100
100
  }
@@ -6,15 +6,15 @@
6
6
  "test": "jest"
7
7
  },
8
8
  "devDependencies": {
9
- "@ton-community/blueprint": "^0.6.1",
10
- "@ton-community/sandbox": "^0.7.0",
9
+ "@ton-community/blueprint": "^0.8.0",
10
+ "@ton-community/sandbox": "^0.8.0",
11
11
  "@ton-community/test-utils": "^0.2.0",
12
12
  "@types/jest": "^29.5.0",
13
13
  "@types/node": "^18.15.5",
14
14
  "jest": "^29.5.0",
15
15
  "prettier": "^2.8.6",
16
16
  "ton": "^13.4.1",
17
- "ton-core": "^0.48.0",
17
+ "ton-core": "^0.49.0",
18
18
  "ton-crypto": "^3.2.0",
19
19
  "ts-jest": "^29.0.5",
20
20
  "ts-node": "^10.9.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ton",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "license": "MIT",
5
5
  "description": "Tool to quickly create TON projects",
6
6
  "author": "TonTech",
@@ -20,8 +20,8 @@
20
20
  "devDependencies": {
21
21
  "@types/fs-extra": "^11.0.1",
22
22
  "@types/inquirer": "^8.2.6",
23
- "@types/node": "^18.15.5",
24
- "prettier": "^2.8.6",
23
+ "@types/node": "^18.15.11",
24
+ "prettier": "^2.8.7",
25
25
  "typescript": "^4.9.5"
26
26
  },
27
27
  "dependencies": {