domql 1.5.1 → 1.5.2

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
@@ -3,7 +3,7 @@
3
3
  "description": "DOM rendering Javascript framework at early stage.",
4
4
  "private": false,
5
5
  "author": "rackai",
6
- "version": "1.5.1",
6
+ "version": "1.5.2",
7
7
  "repository": "https://github.com/rackai/domql",
8
8
  "publishConfig": {
9
9
  "registry": "https://registry.npmjs.org"
@@ -145,9 +145,6 @@ const create = (element, parent, key, options = {}) => {
145
145
  // assign NODE
146
146
  assignNode(element, parent, key)
147
147
 
148
- console.log(key, element)
149
- console.log(element.path)
150
-
151
148
  // run `on.render`
152
149
  if (element.on && isFunction(element.on.render)) {
153
150
  on.render(element.on.render, element, element.state)