@live-change/server 0.7.3 → 0.7.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/Services.js +2 -2
- package/package.json +6 -6
package/lib/Services.js
CHANGED
|
@@ -117,7 +117,7 @@ class Services {
|
|
|
117
117
|
async update() {
|
|
118
118
|
await Promise.all(this.serviceDefinitions.map(defn => {
|
|
119
119
|
if(!defn.processed) {
|
|
120
|
-
app.processServiceDefinition(defn
|
|
120
|
+
app.processServiceDefinition(defn)
|
|
121
121
|
defn.processed = true
|
|
122
122
|
}
|
|
123
123
|
return app.updateService(defn)
|
|
@@ -128,7 +128,7 @@ class Services {
|
|
|
128
128
|
await Promise.all(this.plugins.map(plugin => plugin(app, this)))
|
|
129
129
|
this.services = await Promise.all(this.serviceDefinitions.map(defn => {
|
|
130
130
|
if(!defn.processed) {
|
|
131
|
-
app.processServiceDefinition(defn
|
|
131
|
+
app.processServiceDefinition(defn)
|
|
132
132
|
defn.processed = true
|
|
133
133
|
}
|
|
134
134
|
return app.startService(defn, startOptions)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/server",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Live Change Framework - server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/live-change/live-change-framework",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/dao": "0.5.
|
|
25
|
-
"@live-change/dao-sockjs": "0.5.
|
|
24
|
+
"@live-change/dao": "0.5.8",
|
|
25
|
+
"@live-change/dao-sockjs": "0.5.8",
|
|
26
26
|
"@live-change/db-server": "0.5.19",
|
|
27
|
-
"@live-change/framework": "^0.7.
|
|
27
|
+
"@live-change/framework": "^0.7.4",
|
|
28
28
|
"@live-change/sockjs": "0.4.1",
|
|
29
|
-
"@live-change/uid": "^0.7.
|
|
29
|
+
"@live-change/uid": "^0.7.4",
|
|
30
30
|
"dotenv": "^16.0.1",
|
|
31
31
|
"express": "^4.18.1",
|
|
32
32
|
"express-static-gzip": "2.1.7",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"websocket": "^1.0.34",
|
|
40
40
|
"yargs": "^17.5.1"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "b4634f8267f89859042f176e5430567fd796082e"
|
|
43
43
|
}
|