memory-sri 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -258,3 +258,7 @@ app.listen(PORT, () => {
258
258
  - **Background Task Processing**: A separate worker process reads tasks from the queue and runs the function.
259
259
 
260
260
  - **Test jest**: Jest tests verify core functionality, TTL sorting, and correct task recording.
261
+
262
+ ### Repositories
263
+ - [memory-repo-express](https://github.com/Santipap-Eiam/memory-repo-express)
264
+ - [memory-repo-ts](https://github.com/Santipap-Eiam/memory-repo-ts)
package/lib/main.js CHANGED
@@ -12,7 +12,7 @@ let memory = module.exports;
12
12
  /**
13
13
  * version
14
14
  */
15
- memory.version = "1.3.1";
15
+ memory.version = "1.3.2";
16
16
 
17
17
  /**
18
18
  * Memory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memory-sri",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Powerful yet simple memory and queue manager for building efficient Node.js apps.",
5
5
  "scripts": {
6
6
  "test": "npx jest ---coverage=false --detectOpenHandles --forceExit",
@@ -19,13 +19,14 @@
19
19
  "queue",
20
20
  "data-structure",
21
21
  "memory",
22
- "node"
22
+ "node",
23
+ "backend"
23
24
  ],
24
25
  "main": "./index",
25
26
  "types": "./index.d.ts",
26
27
  "typings": "./index.d.ts",
27
28
  "repository": {
28
29
  "type": "git",
29
- "url": "https://github.com/Santipap-Eiamsamlee/memory.git"
30
+ "url": "https://github.com/Santipap-Eiam/memory-repo-ts.git"
30
31
  }
31
32
  }