Skip to content

Commit

Permalink
add type check for middleware and fetcher
Browse files Browse the repository at this point in the history
  • Loading branch information
promer94 committed Sep 22, 2021
1 parent ef161b8 commit 12082ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@
"build:immutable": "bunchee index.ts --cwd immutable -m --no-sourcemap",
"prepublishOnly": "yarn clean && yarn build",
"publish-beta": "yarn publish --tag beta",
"types:check": "tsc --noEmit",
"types:check": "yarn types:check:core && yarn types:check:infinite && yarn types:check:immutable && yarn types:check:fetcher",
"types:check:core": "tsc --noEmit",
"types:check:infinite": "cd infinite && tsc --noEmit",
"types:check:immutable": "cd immutable && tsc --noEmit",
"types:check:fetcher": "cd test-type && tsc --noEmit",
"format": "prettier --write ./**/*.{ts,tsx}",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
Expand Down

0 comments on commit 12082ec

Please sign in to comment.