Skip to content

Commit

Permalink
updated and fixed any typing
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Nov 14, 2022
1 parent d2c2991 commit 92e9594
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "npm run test:js && npm run test:ts && npm run test:types && npm run perf",
"test:js": "npm run build && for f in tests/*.js; do node -r esm $f; done",
"test:ts": "npm run build && for f in tests/*.ts; do npx ts-node $f; done",
"test:types": "npx tsc --moduleResolution node --noEmit --target es2020 ./tests/*.ts"
"test:types": "npx tsc --moduleResolution node --noEmit --noImplicitAny --target es2020 ./tests/*.ts"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -47,11 +47,11 @@
"homepage": "https://github.com/DanielJDufour/xdim#readme",
"dependencies": {
"iter-fun": "^0.2.0",
"type-fest": "^2.17.0"
"type-fest": "^3.2.0"
},
"devDependencies": {
"esm": "^3.2.25",
"flug": "^2.3.1",
"typescript": "^4.7.4"
"typescript": "^4.8.4"
}
}
2 changes: 1 addition & 1 deletion src/xdim.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export function prepareData<
}): {
shape: S,
data: ReturnType<typeof createMatrix<S, F>>,
arrayTypes
arrayTypes: ArrayTypeStrings
}

export function prepareSelect<D>({
Expand Down

0 comments on commit 92e9594

Please sign in to comment.