Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitkolhe committed Sep 28, 2024
1 parent 60da831 commit 385221d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
Binary file modified bun.lockb
Binary file not shown.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,30 +44,30 @@
"commit-msg": "bun run commitlint --edit $1"
},
"dependencies": {
"@hono/node-server": "^1.12.0",
"@hono/zod-openapi": "^0.15.1",
"@hono/zod-validator": "^0.2.2",
"@scalar/hono-api-reference": "^0.5.129",
"hono": "^4.5.3",
"@hono/node-server": "^1.13.1",
"@hono/zod-openapi": "^0.16.2",
"@hono/zod-validator": "^0.3.0",
"@scalar/hono-api-reference": "^0.5.149",
"hono": "^4.6.3",
"node-forge": "^1.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@kolhe/eslint-config": "2.2.2",
"@types/bun": "^1.1.6",
"@types/node": "^22.1.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@kolhe/eslint-config": "2.2.5",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"@types/node-forge": "^1.3.11",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"changelogen": "^0.5.5",
"eslint": "^9.8.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"changelogen": "^0.5.7",
"eslint": "^9.11.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}
2 changes: 1 addition & 1 deletion src/modules/playlists/controllers/playlist.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class PlaylistController implements Routes {
.optional()
.transform((value) => {
const matches = value?.match(
/(?:jiosaavn\.com|saavn\.com)\/(?:featured|s\/playlist)\/[^/]+\/([^/]+)$|(?:\/([^/]+)$)/
/(?:jiosaavn\.com|saavn\.com)\/(?:featured|s\/playlist)\/[^/]+\/([^/]+)$|\/([^/]+)$/
)
const filteredMatches = matches?.filter((each) => each !== undefined)
return (filteredMatches && filteredMatches[filteredMatches?.length - 1 || 0]) || undefined
Expand Down

0 comments on commit 385221d

Please sign in to comment.