diff --git a/README.md b/README.md index b4dfe4fa83..7b8707ac80 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ For a quick start, read the ["Let's start!"](https://docs.tact-lang.org/#start) If you want more manual control, use [tact-template](https://github.com/tact-lang/tact-template). It's a ready-to-use template with the development environment set up, including the Tact compiler with TypeScript + Jest, a local TON emulator, AI-based editor support, and examples of how to run tests. ```shell -git clone https://github.com/tact-lang/tact-template +git clone --depth 1 https://github.com/tact-lang/tact-template ``` ## Community diff --git a/docs/src/content/docs/book/compile.mdx b/docs/src/content/docs/book/compile.mdx index 880c7cf68e..7b63c1da6e 100644 --- a/docs/src/content/docs/book/compile.mdx +++ b/docs/src/content/docs/book/compile.mdx @@ -21,15 +21,20 @@ Work on the compiler is active and extensive, so be sure to check out [NPM](http To upgrade the Tact compiler to its latest version in a [Blueprint][bp]-based project or a project created from the [tact-template](https://github.com/tact-lang/tact-template), run: - + ```shell # recommended yarn upgrade @tact-lang/compiler ``` + + ```shell + yarn up @tact-lang/compiler + ``` + ```shell - npm i @tact-lang/compiler@latest + npm update --save @tact-lang/compiler ```