diff --git a/README.md b/README.md index 35fb267..18acc06 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Todoroki is a Command Line Interface (CLI) tool to create the best boilerplate f ## Run it - install the Todoroki CLI globally, use the package manager you prefer: + First, run the command below using the package manager you prefer. Example ```bash diff --git a/package.json b/package.json index e7181d7..4610d2d 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,13 @@ "bin": { "todoroki": "./dist/index.js" }, - "version": "1.0.4", + "version": "1.0.5", "main": "index.js", "scripts": { "dev": "tsc -w", "build": "tsc", "postbuild": "echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js", - "link-cli": "(yarn --global unlink practice-cli || true) && chmod +x ./dist/index.js && yarn --global link", + "link-cli": "(yarn --global unlink todoroki || true) && chmod +x ./dist/index.js && yarn --global link", "lint": "pnpm biome check --write", "release": "pnpm build && changeset publish" }, diff --git a/src/index.ts b/src/index.ts index b7619cf..28d7a53 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ const program = new Command(); program .name("todoroki") .description("A CLI to create the best boilerplate for your project") - .version("1.0.4"); + .version("1.0.5"); program .command("create")