@live-change/framework 0.8.61 → 0.8.63

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/App.js +2 -1
  2. 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(const plugin of service.use) {
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.61",
3
+ "version": "0.8.63",
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.61",
26
- "@live-change/uid": "^0.8.61"
25
+ "@live-change/dao": "^0.8.63",
26
+ "@live-change/uid": "^0.8.63"
27
27
  },
28
- "gitHead": "3d88dcb3758467da1440e5d4500af531595aa310"
28
+ "gitHead": "f49f580138d6c44d9e9820197765ef982c5bab03"
29
29
  }