Skip to content

Commit

Permalink
refactor(readme): modify words
Browse files Browse the repository at this point in the history
  • Loading branch information
victormicco committed Jul 30, 2024
1 parent 6dbfc23 commit 9a62539
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 9a62539

Please sign in to comment.