domql 1.5.20 → 1.5.22

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.20",
6
+ "version": "1.5.22",
7
7
  "repository": "https://github.com/rackai/domql",
8
8
  "publishConfig": {
9
9
  "registry": "https://registry.npmjs.org"
@@ -26,8 +26,6 @@ const set = function (params, options, el) {
26
26
  const element = el || this
27
27
 
28
28
  const isEqual = isEqualDeep(params, element.content)
29
- console.error(isEqual)
30
- console.log(element.path)
31
29
  // console.error(params)
32
30
  if (isEqual && element.content.__cached) return element
33
31
  removeContentElement(element)
@@ -11,8 +11,6 @@ import { createNode } from '.'
11
11
  import { updateProps } from './props'
12
12
  import createState from './state'
13
13
 
14
- import { measure } from '@domql/performance'
15
-
16
14
  const UPDATE_DEFAULT_OPTIONS = {
17
15
  stackChanges: false,
18
16
  cleanExec: true,