Skip to content

Commit

Permalink
Merge pull request #2 from reilem/fix-inferred-type-limits
Browse files Browse the repository at this point in the history
Fix inferred type limits
  • Loading branch information
reilem authored Oct 22, 2024
2 parents 918cbb3 + 927f766 commit d49e5b3
Show file tree
Hide file tree
Showing 38 changed files with 1,657 additions and 424 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@ jobs:
- name: Prettier Check
run: pnpm run prettiercheck

- name: Circular Dependencies Check
run: pnpm run circularcheck

- name: Test
run: pnpm run test

- name: Build
run: pnpm run build
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Prettier Check
run: pnpm run prettiercheck

- name: Circular Dependencies Check
run: pnpm run circularcheck

- name: Test
run: pnpm run test

Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@
"clean": "rimraf lib",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"typecheck": "tsc",
"prettiercheck": "prettier -c ."
"prettiercheck": "prettier -c .",
"circularcheck": "madge --circular --extensions ts ./src"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"madge": "^8.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "~5.3.3",
"zod": "^3.22.4"
"typescript": "~5.6.3",
"zod": "^3.23.8"
}
}
Loading

0 comments on commit d49e5b3

Please sign in to comment.