Skip to content

Commit

Permalink
fix(recent): implement recent limit when adding to groups
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlindquist committed Sep 23, 2024
1 parent ade651d commit becf170
Show file tree
Hide file tree
Showing 9 changed files with 4,249 additions and 3,660 deletions.
7 changes: 4 additions & 3 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down Expand Up @@ -39,6 +39,7 @@
"useTemplate": "off",
"useForOf": "off",
"useLiteralEnumMembers": "off",
"useConst": "off",
"useFilenamingConvention": {
"level": "error",
"options": {
Expand Down Expand Up @@ -89,10 +90,10 @@
"formatter": {
"enabled": true,
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "always",
"bracketSpacing": true,
"arrowParentheses": "always"
"arrowParentheses": "always",
"trailingCommas": "none"
}
},
"json": {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"pnpm": {
"overrides": {
"typescript": "5.6.2",
"esbuild": "0.23.1"
"esbuild": "0.24.0"
}
},
"dependencies": {
Expand All @@ -89,15 +89,15 @@
"chrome-trace-event": "^1.0.4",
"color-name": "2.0.0",
"dotenv": "^16.4.5",
"esbuild": "0.23.1",
"esbuild": "0.24.0",
"express": "^4.21.0",
"filesize": "10.1.6",
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"highlight.js": "^11.10.0",
"isomorphic-git": "1.27.1",
"jsonfile": "6.1.0",
"keyv": "^5.0.1",
"keyv": "^5.0.3",
"keyv-file": "^5.0.3",
"p-retry": "6.2.0",
"quick-score": "^0.2.0",
Expand All @@ -117,7 +117,7 @@
"@types/debug": "4.1.12",
"@types/express": "4.17.21",
"@types/express-ws": "3.0.5",
"@types/node": "^22.5.5",
"@types/node": "^22.6.0",
"@types/node-ipc": "9.2.3",
"ava": "^6.1.3",
"cross-env": "^7.0.3",
Expand Down
Loading

0 comments on commit becf170

Please sign in to comment.