@live-change/cli 0.6.10 → 0.6.12

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.
Files changed (2) hide show
  1. package/bin/lcli.js +1 -3
  2. package/package.json +6 -6
package/bin/lcli.js CHANGED
@@ -16,8 +16,6 @@ const {
16
16
  setupApiServer,
17
17
  setupApiSockJs,
18
18
  setupApiWs,
19
- setupDbServer,
20
- setupDbClient,
21
19
  setupApp,
22
20
  setupApiEndpoints
23
21
 
@@ -217,7 +215,7 @@ const argv = require('yargs') // eslint-disable-line
217
215
  async function apiServer(argv) {
218
216
  const { apiPort, apiHost } = argv
219
217
 
220
- const apiServer = await setupApiServer(argv, dbServer)
218
+ const apiServer = await setupApiServer(argv)
221
219
 
222
220
  const expressApp = express()
223
221
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/cli",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
4
4
  "description": "Live Change Framework - command line interface",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "homepage": "https://github.com/live-change/live-change-framework",
26
26
  "dependencies": {
27
- "@live-change/dao": "0.5.1",
27
+ "@live-change/dao": "0.5.4",
28
28
  "@live-change/dao-sockjs": "0.5.1",
29
- "@live-change/dao-websocket": "0.5.1",
29
+ "@live-change/dao-websocket": "0.5.4",
30
30
  "@live-change/db-server": "0.5.13",
31
- "@live-change/framework": "^0.6.10",
32
- "@live-change/server": "^0.6.10",
31
+ "@live-change/framework": "^0.6.12",
32
+ "@live-change/server": "^0.6.12",
33
33
  "dotenv": "^16.0.1",
34
34
  "express": "^4.18.1",
35
35
  "http-proxy-middleware": "2.0.6",
@@ -40,5 +40,5 @@
40
40
  "websocket": "^1.0.34",
41
41
  "yargs": "^17.5.1"
42
42
  },
43
- "gitHead": "94daf36c87486b4241b752080c926995b27827d2"
43
+ "gitHead": "2971bd3c587931c7a33f8f424dd7b22a08e04ab0"
44
44
  }