@live-change/framework 0.8.23 → 0.8.24

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/utils.js +0 -1
  2. package/package.json +4 -4
package/lib/utils.js CHANGED
@@ -181,7 +181,6 @@ function generateDefault(properties) {
181
181
  let result = {}
182
182
  for(const propName in properties) {
183
183
  const property = properties[propName]
184
- console.log("GENERATE DEFAULT", propName, property, property.hasOwnProperty('defaultValue'), property.hasOwnProperty('default'))
185
184
  if(property.hasOwnProperty('defaultValue')) {
186
185
  result[propName] = property.defaultValue
187
186
  } else if(property.hasOwnProperty('default')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/framework",
3
- "version": "0.8.23",
3
+ "version": "0.8.24",
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.23",
26
- "@live-change/uid": "^0.8.23"
25
+ "@live-change/dao": "^0.8.24",
26
+ "@live-change/uid": "^0.8.24"
27
27
  },
28
- "gitHead": "581260523149a1e596f08e878b5f4fabeaba26ea"
28
+ "gitHead": "63e942caccbcb1c9bfbd1a3ef1d097124514c5a7"
29
29
  }