dbmodel 6.6.0 → 6.6.1
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/bin/dbmodel.js +2 -2
- package/package.json +12 -12
package/bin/dbmodel.js
CHANGED
|
@@ -20,10 +20,10 @@ const logger = createLogger('dbmodel');
|
|
|
20
20
|
async function runAndExit(promise) {
|
|
21
21
|
try {
|
|
22
22
|
await promise;
|
|
23
|
-
logger.info('Success');
|
|
23
|
+
logger.info('DBGM-00112 Success');
|
|
24
24
|
process.exit();
|
|
25
25
|
} catch (err) {
|
|
26
|
-
logger.error(extractErrorLogData(err), 'Processing failed');
|
|
26
|
+
logger.error(extractErrorLogData(err), 'DBGM-00113 Processing failed');
|
|
27
27
|
process.exit(1);
|
|
28
28
|
}
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dbmodel",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.1",
|
|
4
4
|
"homepage": "https://dbgate.org/",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"commander": "^10.0.0",
|
|
33
|
-
"dbgate-api": "^6.6.
|
|
34
|
-
"dbgate-plugin-csv": "^6.6.
|
|
35
|
-
"dbgate-plugin-excel": "^6.6.
|
|
36
|
-
"dbgate-plugin-mongo": "^6.6.
|
|
37
|
-
"dbgate-plugin-mssql": "^6.6.
|
|
38
|
-
"dbgate-plugin-mysql": "^6.6.
|
|
39
|
-
"dbgate-plugin-postgres": "^6.6.
|
|
40
|
-
"dbgate-plugin-xml": "^6.6.
|
|
41
|
-
"dbgate-plugin-oracle": "^6.6.
|
|
42
|
-
"dbgate-web": "^6.6.
|
|
33
|
+
"dbgate-api": "^6.6.1",
|
|
34
|
+
"dbgate-plugin-csv": "^6.6.1",
|
|
35
|
+
"dbgate-plugin-excel": "^6.6.1",
|
|
36
|
+
"dbgate-plugin-mongo": "^6.6.1",
|
|
37
|
+
"dbgate-plugin-mssql": "^6.6.1",
|
|
38
|
+
"dbgate-plugin-mysql": "^6.6.1",
|
|
39
|
+
"dbgate-plugin-postgres": "^6.6.1",
|
|
40
|
+
"dbgate-plugin-xml": "^6.6.1",
|
|
41
|
+
"dbgate-plugin-oracle": "^6.6.1",
|
|
42
|
+
"dbgate-web": "^6.6.1",
|
|
43
43
|
"dotenv": "^16.0.0",
|
|
44
|
-
"pinomin": "^1.0.
|
|
44
|
+
"pinomin": "^1.0.5"
|
|
45
45
|
}
|
|
46
46
|
}
|