@live-change/db-client 0.4.70 → 0.5.4
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/lib/exec.js +1 -1
- package/package.json +8 -7
package/lib/exec.js
CHANGED
|
@@ -58,7 +58,7 @@ async function exec(options) {
|
|
|
58
58
|
}
|
|
59
59
|
if(targetDb) {
|
|
60
60
|
if(sourceDb != command.parameters[0])
|
|
61
|
-
throw new Error(`source database changed from ${sourceDb} to ${
|
|
61
|
+
throw new Error(`source database changed from ${sourceDb} to ${command.parameters[0]}`)
|
|
62
62
|
command.parameters[0] = targetDb
|
|
63
63
|
}
|
|
64
64
|
//console.log("REQUEST", command.method, command.parameters)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db-client",
|
|
3
|
-
"version": "0.4
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Database with observable data for live queries",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/live-change/db
|
|
14
|
+
"url": "git+https://github.com/live-change/live-change-db.git"
|
|
15
15
|
},
|
|
16
16
|
"author": {
|
|
17
17
|
"email": "m8@em8.pl",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"bugs": {
|
|
23
|
-
"url": "https://github.com/live-change/db
|
|
23
|
+
"url": "https://github.com/live-change/live-change-db/issues"
|
|
24
24
|
},
|
|
25
|
-
"homepage": "https://github.com/live-change/db
|
|
25
|
+
"homepage": "https://github.com/live-change/live-change-db",
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"tape": "^4.13.3"
|
|
28
28
|
},
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
"@live-change/dao": "^0.2.22",
|
|
31
31
|
"@live-change/dao-websocket": "^0.2.13",
|
|
32
32
|
"line-reader": "^0.4.0",
|
|
33
|
+
"segfault-handler": "^1.3.0",
|
|
33
34
|
"websocket": "^1.0.33",
|
|
34
|
-
"yargs": "^15.4.1"
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
"yargs": "^15.4.1"
|
|
36
|
+
},
|
|
37
|
+
"gitHead": "0dfd0cb953fad982630808934326d00abea2c2b4"
|
|
37
38
|
}
|