@anchan828/nest-redlock 0.0.10 → 0.0.11
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 +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ See [node-redlock](https://github.com/mike-marcacci/node-redlock) for more infor
|
|
|
58
58
|
|
|
59
59
|
## Define complex resources (lock keys)
|
|
60
60
|
|
|
61
|
-
Using constants causes the same lock key to be used for all calls. Let's reduce the
|
|
61
|
+
Using constants causes the same lock key to be used for all calls. Let's reduce the scope a bit more.
|
|
62
62
|
|
|
63
63
|
In this example, only certain projects are now locked.
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anchan828/nest-redlock",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "This is a [Nest](https://github.com/nestjs/nest) implementation of the redlock algorithm for distributed redis locks.",
|
|
5
5
|
"homepage": "https://github.com/anchan828/nest-redlock#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -26,18 +26,18 @@
|
|
|
26
26
|
"redlock": "^5.0.0-beta.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@commitlint/cli": "17.
|
|
30
|
-
"@commitlint/config-conventional": "17.0
|
|
29
|
+
"@commitlint/cli": "17.1.1",
|
|
30
|
+
"@commitlint/config-conventional": "17.1.0",
|
|
31
31
|
"@nestjs/common": "9.0.11",
|
|
32
32
|
"@nestjs/core": "9.0.11",
|
|
33
33
|
"@nestjs/platform-express": "9.0.11",
|
|
34
34
|
"@nestjs/testing": "9.0.11",
|
|
35
|
-
"@types/jest": "28.1.
|
|
36
|
-
"@types/node": "
|
|
35
|
+
"@types/jest": "28.1.8",
|
|
36
|
+
"@types/node": "18.7.13",
|
|
37
37
|
"@types/supertest": "2.0.12",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
39
|
-
"@typescript-eslint/parser": "5.
|
|
40
|
-
"eslint": "8.
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "5.35.1",
|
|
39
|
+
"@typescript-eslint/parser": "5.35.1",
|
|
40
|
+
"eslint": "8.23.0",
|
|
41
41
|
"eslint-config-prettier": "8.5.0",
|
|
42
42
|
"eslint-plugin-prettier": "4.2.1",
|
|
43
43
|
"husky": "8.0.1",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"supertest": "6.2.4",
|
|
51
51
|
"ts-jest": "28.0.8",
|
|
52
52
|
"ts-node": "10.9.1",
|
|
53
|
-
"typescript": "4.
|
|
53
|
+
"typescript": "4.8.2"
|
|
54
54
|
},
|
|
55
55
|
"volta": {
|
|
56
56
|
"node": "18.4.0"
|