Skip to content

Commit

Permalink
fix: type-fest must be included in the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
retro committed Sep 8, 2024
1 parent aa19557 commit 9acff7c
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 22 deletions.
188 changes: 167 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^2.0.5",
"c8": "^8.0.0",
"cspell": "^6.31.1",
"eslint": "^8.57.0",
Expand All @@ -69,11 +70,11 @@
"semantic-release": "^24.1.0",
"source-map-support": "^0.5.21",
"tsx": "^3.12.7",
"type-fest": "^4.26.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"type-fest": "^4.26.0",
"effect": "^3.7.2",
"mutative": "^1.0.8",
"nanoid": "^5.0.7"
Expand Down
4 changes: 4 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ import { defineConfig } from 'vite';
export default defineConfig({
test: {
include: ['src/**/*.{test,spec}.?(c|m)[jt]s?(x)'],
coverage: {
provider: 'istanbul',
include: ['src/**/*.{ts,tsx}'],
},
},
});

0 comments on commit 9acff7c

Please sign in to comment.