Skip to content

Commit 90b6447

Browse files
committed
chore: enhance project configuration and improve service methods
- Added new commands to package.json for biome checks and unsafe writes. - Updated tsconfig.json for better type checking and module resolution. - Refactored service classes (AnimeService, CharacterService, MangaService, MediaListService, StaffService) for improved readability and consistency in method definitions. - Enhanced test cases for anime and manga APIs to ensure comprehensive coverage and validation of responses.
1 parent 866c8db commit 90b6447

File tree

11 files changed

+6697
-4411
lines changed

11 files changed

+6697
-4411
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@
4949
"build": "bun run build.ts",
5050
"prepublishOnly": "bun run build",
5151
"codegen": "rimraf src/__generated__ && graphql-codegen --config codegen.yml",
52-
"test": "bun test"
52+
"test": "bun test",
53+
"check": "biome check .",
54+
"check:unsafe": "biome check --write --unsafe .",
55+
"check:write": "biome check --write ."
5356
},
5457
"devDependencies": {
5558
"@biomejs/biome": "^2.1.3",

0 commit comments

Comments
 (0)