@live-change/db-client 0.6.9 → 0.6.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/bin/client.js +0 -3
- package/package.json +2 -3
package/bin/client.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const SegfaultHandler = require('segfault-handler')
|
|
3
2
|
|
|
4
3
|
const dump = require('../lib/dump.js')
|
|
5
4
|
const exec = require('../lib/exec.js')
|
|
@@ -17,8 +16,6 @@ process.on('uncaughtException', function (err) {
|
|
|
17
16
|
console.error(err.stack)
|
|
18
17
|
})
|
|
19
18
|
|
|
20
|
-
SegfaultHandler.registerHandler("crash.log");
|
|
21
|
-
|
|
22
19
|
function clientOptions(yargs) {
|
|
23
20
|
yargs.option('serverUrl', {
|
|
24
21
|
describe: 'database api url',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db-client",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"description": "Database with observable data for live queries",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,9 +30,8 @@
|
|
|
30
30
|
"@live-change/dao": "0.5.19",
|
|
31
31
|
"@live-change/dao-websocket": "0.5.19",
|
|
32
32
|
"line-reader": "^0.4.0",
|
|
33
|
-
"segfault-handler": "^1.3.0",
|
|
34
33
|
"websocket": "^1.0.34",
|
|
35
34
|
"yargs": "^17.5.1"
|
|
36
35
|
},
|
|
37
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "357cd9cd3f19c5cc229a3266d66566b81440d188"
|
|
38
37
|
}
|