Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix windows yarn bootstrap #19

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.15.1] - 2024-07-12

### Fixed

- Fixed failed blueprint bootstrap on windows

## [0.15.0] - 2024-06-19

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-ton",
"version": "0.15.0",
"version": "0.15.1",
"license": "MIT",
"description": "Tool to quickly create TON projects",
"author": "TonTech",
Expand Down
33 changes: 21 additions & 12 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,19 +147,28 @@ Session.vim

console.log(`\n[3/${steps}] Creating your first contract...`);

let execCommand = 'npm';
switch (pkgManager) {
case 'yarn':
execCommand = 'yarn';
break;
case 'pnpm':
execCommand = 'pnpm';
break;
const execArgs = `create ${contractName} --type ${variant}`;

// below is fix for windows. Windows does not accept yarn exec to find binaries somehow so binary path specified directly
if (pkgManager === 'yarn' && process.platform === 'win32') {
const blueprintBinariesPath = path.join(projectPath, 'node_modules', '.bin', 'blueprint');
execSync(`${blueprintBinariesPath} ${execArgs}`, execOpts);
} else {
let execCommand = 'npm';
switch (pkgManager) {
case 'yarn':
execCommand = 'yarn';
break;
case 'pnpm':
execCommand = 'pnpm';
break;
}
execSync(
`${execCommand} exec blueprint${pkgManager === 'pnpm' ? '' : ' --'} ${execArgs}`,
execOpts
);
}
execSync(
`${execCommand} exec blueprint${pkgManager === 'pnpm' ? '' : ' --'} create ${contractName} --type ${variant}`,
execOpts
);


try {
execSync('git init', execOpts);
Expand Down