@akemona-org/strapi-hook-redis 3.7.0 → 3.7.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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -16,7 +16,7 @@ const stackTrace = require('stack-trace');
16
16
  * Redis hook
17
17
  */
18
18
 
19
- module.exports = function(strapi) {
19
+ module.exports = function (strapi) {
20
20
  const hook = {
21
21
  /**
22
22
  * Default options
@@ -75,7 +75,7 @@ module.exports = function(strapi) {
75
75
  )
76
76
  );
77
77
 
78
- redis.on('error', err => {
78
+ redis.on('error', (err) => {
79
79
  strapi.log.error(err);
80
80
  process.exit(0);
81
81
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.7.0",
6
+ "version": "3.7.2",
7
7
  "description": "Redis hook for the Strapi framework",
8
8
  "homepage": "https://strapi.akemona.com",
9
9
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "main": "./lib",
20
20
  "dependencies": {
21
- "@akemona-org/strapi-utils": "3.7.0",
21
+ "@akemona-org/strapi-utils": "3.7.2",
22
22
  "ioredis": "^4.27.1",
23
23
  "lodash": "4.17.21",
24
24
  "rimraf": "3.0.2",
@@ -51,5 +51,5 @@
51
51
  "scripts": {
52
52
  "test": "echo \"no tests yet\""
53
53
  },
54
- "gitHead": "129a8d6191b55810fd66448dcc47fee829df986c"
54
+ "gitHead": "4ab59dbae5135819558c6ae27b45a556ff27cf55"
55
55
  }