Skip to content

Commit

Permalink
Merge pull request #124 from kitsuyui/add-typecheck-subcommand
Browse files Browse the repository at this point in the history
Add a typecheck subcommand `pnpm lint:type` to package.json
  • Loading branch information
kitsuyui authored Oct 12, 2023
2 parents 5c6d114 + 8acd2b0 commit 549ed50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
- name: Lint
run: |
pnpm lint
pnpm format --check
pnpm lint:type
pnpm lint:format
- name: Build
run: pnpm build
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"dev:bin": "tsup src/main.ts --dts --format cjs,esm --minify --clean --sourcemap --watch --onSuccess 'node dist/main.js'",
"test": "jest --coverage",
"lint": "eslint --ext .ts src",
"lint:type": "tsc --noEmit --project .",
"lint:format": "prettier --check .",
"format": "prettier --write .",
"typedoc": "typedoc"
},
Expand Down

0 comments on commit 549ed50

Please sign in to comment.