@live-change/framework 0.8.62 → 0.8.64
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/App.js +2 -1
- package/package.json +4 -4
package/lib/App.js
CHANGED
|
@@ -102,7 +102,8 @@ class App {
|
|
|
102
102
|
processors = processors.slice()
|
|
103
103
|
function processUse(service) {
|
|
104
104
|
if(service && service.use) {
|
|
105
|
-
for(
|
|
105
|
+
for(let i = service.use.length - 1; i >= 0; i --) { // apply in reverse order
|
|
106
|
+
const plugin = service.use[i]
|
|
106
107
|
processUse(plugin)
|
|
107
108
|
}
|
|
108
109
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/framework",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.64",
|
|
4
4
|
"description": "Live Change Framework - ultimate solution for real time mobile/web apps",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/live-change/live-change-stack",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@live-change/dao": "^0.8.
|
|
26
|
-
"@live-change/uid": "^0.8.
|
|
25
|
+
"@live-change/dao": "^0.8.64",
|
|
26
|
+
"@live-change/uid": "^0.8.64"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "cf14b283170cd39b80a57865e9b5eb9cf2073f39"
|
|
29
29
|
}
|