@domql/element 2.31.2 → 2.31.3

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.
@@ -250,7 +250,7 @@ function log(...params) {
250
250
  console.log(...params);
251
251
  }
252
252
  function warn(...params) {
253
- console.warn(...params);
253
+ console.warn(...params, this);
254
254
  }
255
255
  function error(...params) {
256
256
  var _a, _b;
@@ -209,7 +209,7 @@ function log(...params) {
209
209
  console.log(...params);
210
210
  }
211
211
  function warn(...params) {
212
- console.warn(...params);
212
+ console.warn(...params, this);
213
213
  }
214
214
  function error(...params) {
215
215
  var _a, _b;
package/methods/index.js CHANGED
@@ -266,7 +266,7 @@ export function log(...params) {
266
266
 
267
267
  export function warn(...params) {
268
268
  // if (isNotProduction()) {
269
- console.warn(...params)
269
+ console.warn(...params, this)
270
270
  // }
271
271
  }
272
272
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/element",
3
- "version": "2.31.2",
3
+ "version": "2.31.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -27,12 +27,12 @@
27
27
  "prepublish": "npx rimraf -I dist && npm run build && npm run copy:package:cjs"
28
28
  },
29
29
  "dependencies": {
30
- "@domql/event": "^2.31.2",
31
- "@domql/render": "^2.31.2",
32
- "@domql/state": "^2.31.2",
33
- "@domql/utils": "^2.31.2"
30
+ "@domql/event": "^2.31.3",
31
+ "@domql/render": "^2.31.3",
32
+ "@domql/state": "^2.31.3",
33
+ "@domql/utils": "^2.31.3"
34
34
  },
35
- "gitHead": "c7d23e63ab53e68a7c670f45e94cb2c7d514262e",
35
+ "gitHead": "aa1ae090226f4c8c909940e3920f0ff00e926ac6",
36
36
  "devDependencies": {
37
37
  "@babel/core": "^7.27.1"
38
38
  }