Skip to content

Commit

Permalink
fix: type checking for libs with deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Aug 7, 2020
1 parent 401c39e commit 3bb5950
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions packages/blob-to-it/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
"test": "playwright-test",
"lint": "standard",
"coverage": "playwright-test",
"check": "tsc --noEmit",
"check": "npm run build:dep:types && tsc --noEmit",
"build": "npm run build:types",
"build:types": "tsc --emitDeclarationOnly --declarationDir dist"
"build:dep:types": "cd node_modules/browser-readablestream-to-it && npm run build:types",
"build:types": "npm run build:dep:types && tsc --emitDeclarationOnly --declarationDir dist"
},
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "ISC",
Expand Down
4 changes: 2 additions & 2 deletions packages/it-parallel-batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"coverage": "nyc --reporter html --reporter lcov ava",
"clean": "rm -rf .nyc_output coverage",
"check": "npm run build:dep:types && tsc --noEmit",
"build": "npm run build:dep:types && npm run build:types",
"build:dep:types": "cd ../it-batch && npm run build:types",
"build": "npm run build:types",
"build:dep:types": "cd node_modules/it-batch && npm run build:types",
"build:types": "npm run build:dep:types && tsc --emitDeclarationOnly --declarationDir dist"
},
"author": "Alex Potsides <alex@achingbrain.net>",
Expand Down

0 comments on commit 3bb5950

Please sign in to comment.