@live-change/server 0.8.2 → 0.8.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.
Files changed (2) hide show
  1. package/lib/Services.js +10 -0
  2. package/package.json +7 -7
package/lib/Services.js CHANGED
@@ -143,6 +143,16 @@ class Services {
143
143
  out.end()
144
144
  }
145
145
 
146
+ async processDefinitions() {
147
+ for(const defn of this.serviceDefinitions) {
148
+ if(!defn.processed) {
149
+ app.processServiceDefinition(defn)
150
+ defn.processed = true
151
+ }
152
+ }
153
+ }
154
+
155
+
146
156
  async update() {
147
157
  /*await Promise.all(this.serviceDefinitions.map(defn => {
148
158
  if(!defn.processed) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/server",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "description": "Live Change Framework - server",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,12 +22,12 @@
22
22
  "type": "module",
23
23
  "homepage": "https://github.com/live-change/live-change-framework",
24
24
  "dependencies": {
25
- "@live-change/dao": "0.6.0",
26
- "@live-change/dao-sockjs": "^0.8.2",
27
- "@live-change/db-server": "^0.8.2",
28
- "@live-change/framework": "^0.8.2",
25
+ "@live-change/dao": "^0.8.4",
26
+ "@live-change/dao-sockjs": "0.8.2",
27
+ "@live-change/db-server": "^0.8.4",
28
+ "@live-change/framework": "0.8.2",
29
29
  "@live-change/sockjs": "0.4.1",
30
- "@live-change/uid": "^0.8.2",
30
+ "@live-change/uid": "0.8.2",
31
31
  "dotenv": "^16.4.4",
32
32
  "express": "^4.18.2",
33
33
  "express-static-gzip": "2.1.7",
@@ -39,5 +39,5 @@
39
39
  "websocket": "^1.0.34",
40
40
  "yargs": "^17.7.2"
41
41
  },
42
- "gitHead": "53b8efc8ec7f5c1c4af33077d8fb4a8a5580f1d9"
42
+ "gitHead": "cdc66924576866cd3b476e5a0e8956de54c6d8d9"
43
43
  }