neo.mjs 4.0.86 → 4.0.87

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.0.86",
3
+ "version": "4.0.87",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -50,11 +50,11 @@
50
50
  "envinfo": "^7.8.1",
51
51
  "fs-extra": "^10.1.0",
52
52
  "highlightjs-line-numbers.js": "^2.8.0",
53
- "inquirer": "^9.0.2",
53
+ "inquirer": "^9.1.0",
54
54
  "neo-jsdoc": "^1.0.1",
55
55
  "neo-jsdoc-x": "^1.0.4",
56
56
  "postcss": "^8.4.14",
57
- "sass": "^1.54.0",
57
+ "sass": "^1.54.3",
58
58
  "webpack": "^5.74.0",
59
59
  "webpack-cli": "^4.10.0",
60
60
  "webpack-dev-server": "4.9.3",
@@ -414,7 +414,7 @@ class Base extends CoreBase {
414
414
  }, 50);
415
415
  });
416
416
  } else if (me.mounted) {
417
- me.updateVdom(vdom, me.vnode);
417
+ me.vnode && me.updateVdom(vdom, me.vnode);
418
418
  }
419
419
 
420
420
  me.hasUnmountedVdomChanges = !me.mounted && me.hasBeenMounted;