@live-change/db-server 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/Dockerfile CHANGED
@@ -1,8 +1,6 @@
1
1
  FROM node:16
2
2
  USER root
3
3
 
4
- RUN echo no cache 1
5
-
6
4
  RUN npm -g config set user root
7
5
 
8
6
  RUN npm install -g encoding-down
package/bin/server.js CHANGED
@@ -2,7 +2,6 @@
2
2
  const path = require('path')
3
3
  const fs = require('fs')
4
4
  const service = require ("os-service")
5
- const SegfaultHandler = require('segfault-handler')
6
5
  const Server = require('../lib/Server.js')
7
6
  const { client: WSClient } = require("@live-change/dao-websocket")
8
7
  const ReactiveDao = require('@live-change/dao')
@@ -23,8 +22,6 @@ process.on('uncaughtException', function (err) {
23
22
  console.error(err.stack)
24
23
  })
25
24
 
26
- SegfaultHandler.registerHandler("crash.log");
27
-
28
25
  function serverOptions(yargs) {
29
26
  yargs.option('port', {
30
27
  describe: 'port to bind on',