Skip to content

Commit

Permalink
docs: ✏️ Add keywords (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
haozi authored Jan 28, 2024
1 parent d9a1b77 commit 634347f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
{
"name": "idmp",
"version": "1.11.1",
"version": "1.11.2",
"keywords": [
"cache response",
"deduplicate network requests",
"idempotent function",
"duplicate API calls",
"swr without hooks",
"deduplicate network requests"
"request deduplication",
"network request caching",
"API caching",
"cache API responses",
"concurrent API calls",
"eliminate duplicate requests",
"retry failed requests",
"immutable data",
"auto retry"
],
"homepage": "https://ha0z1.github.io/idmp/",
"bugs": "https://github.com/ha0z1/idmp/issues",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ type Idmp = typeof idmp
export default idmp
export {
_globalStore as g,
getOptions,
type Idmp,
type IdmpGlobalKey,
type IdmpOptions,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
},
"include": ["src"]
"include": ["src"],
}

0 comments on commit 634347f

Please sign in to comment.