Skip to content

Commit

Permalink
package.json & readmeの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hyphen-o committed Oct 2, 2024
1 parent 5b169c4 commit 02849c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ npm run lint:fix
# run the formatter
npm run format:check
npm run format:fix

# run all check or fix
npm run check
npm run fix

```

## publish the package
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"check": "npm run format:fix && npm run lint:fix",
"check": "npm run format:check && npm run lint:check",
"fix": "npm run format:fix && npm run lint:fix",
"build": "tsc",
"watch": "tsc --watch"
},
Expand Down

0 comments on commit 02849c4

Please sign in to comment.