Skip to content

Commit

Permalink
Merge pull request #59 from ryoppippi/feature/add-format-command
Browse files Browse the repository at this point in the history
feat: add format script to package.json
  • Loading branch information
ryoppippi authored Jun 9, 2024
2 parents e2f399a + 876db21 commit 44d48b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"scripts": {
"build": "turbo build",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"deploy": "turbo deploy"
},
Expand Down
1 change: 1 addition & 0 deletions packages/unplugin-typia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
],
"scripts": {
"lint": "npm run check && eslint .",
"format": "eslint --fix .",
"test": "npm run check && bun test ./test/*.ts",
"check": "bun tsc --noEmit",
"publish": "bun x jsr publish"
Expand Down
3 changes: 3 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"lint": {
"dependsOn": ["^lint"]
},
"format": {
"dependsOn": ["^format"]
},
"test": {
"dependsOn": ["^test"]
},
Expand Down

0 comments on commit 44d48b3

Please sign in to comment.