@seeka-labs/cli-apps 1.1.36 → 1.1.38
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.
|
@@ -16,7 +16,7 @@ export const startServices = async (logger: Logger) => {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
catch (err) {
|
|
19
|
-
logger.error(`Failed to connect to Redis - ${process.env.REDIS_CONNECTION_HOST}`, { ex: winston.exceptions.getAllInfo(err) })
|
|
19
|
+
logger.error(`Failed to connect to Redis - ${process.env.REDIS_CONNECTION_HOST}`, { ex: winston.exceptions.getAllInfo(err as any) })
|
|
20
20
|
throw err;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -35,7 +35,7 @@ export const stopServices = async (logger: Logger) => {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
catch (err) {
|
|
38
|
-
logger.error(`Failed to disconnect from Redis - ${process.env.REDIS_CONNECTION_HOST}`, { ex: winston.exceptions.getAllInfo(err) })
|
|
38
|
+
logger.error(`Failed to disconnect from Redis - ${process.env.REDIS_CONNECTION_HOST}`, { ex: winston.exceptions.getAllInfo(err as any) })
|
|
39
39
|
throw err;
|
|
40
40
|
}
|
|
41
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeka-labs/cli-apps",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.38",
|
|
4
4
|
"description": "Seeka - Apps CLI",
|
|
5
5
|
"author": "SEEKA <platform@seeka.co>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"ts-jest": "^29.3.4",
|
|
45
45
|
"typescript": "^5.8.3"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "a1b680ff963fe377f3348b724bef5cc6cbd28b02",
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"lodash-es": "^4.17.21",
|
|
50
50
|
"source-map-support": "^0.5.21"
|