@live-change/framework 0.8.109 → 0.8.111

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 CHANGED
@@ -15,7 +15,7 @@ import ApiServer from "./runtime/ApiServer.js"
15
15
 
16
16
  import reverseRelationProcessor from "./processors/reverseRelation.js"
17
17
  import indexListProcessor from "./processors/indexList.js"
18
- import crudGenerator from "./processors/crudGenerator.js"
18
+ //import crudGenerator from "./processors/crudGenerator.js"
19
19
  import draftGenerator from "./processors/draftGenerator.js"
20
20
  import daoPathView from "./processors/daoPathView.js"
21
21
  import fetchView from "./processors/fetchView.js"
@@ -51,7 +51,7 @@ class App {
51
51
  this.requestTimeout = config?.db?.requestTimeout || 10*1000
52
52
 
53
53
  this.defaultProcessors = [
54
- crudGenerator,
54
+ // crudGenerator,
55
55
  draftGenerator,
56
56
  reverseRelationProcessor,
57
57
  indexListProcessor,
@@ -28,7 +28,7 @@ class ExecutionQueue {
28
28
  }
29
29
 
30
30
  runNext() {
31
- if(this.nextRoutines.length == 0) {
31
+ if(this.nextRoutines.length === 0) {
32
32
  this.running = false
33
33
  setTimeout(() => { if(!this.running && this.queues) this.queues.delete(this.key) }, 500)
34
34
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/framework",
3
- "version": "0.8.109",
3
+ "version": "0.8.111",
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.109",
26
- "@live-change/uid": "^0.8.109"
25
+ "@live-change/dao": "^0.8.111",
26
+ "@live-change/uid": "^0.8.111"
27
27
  },
28
- "gitHead": "075bf3759fae6c40fb8e44d77d9f12c5c175e098"
28
+ "gitHead": "9b96afb2fc61ab3d2a5d143924e2c56d411280b4"
29
29
  }