@webqit/quantum-js
Advanced tools
Comparing version 4.0.2 to 4.0.3
@@ -11,3 +11,3 @@ { | ||
"homepage": "https://webqit.io/tooling/quantum-js", | ||
"version": "4.0.2", | ||
"version": "4.0.3", | ||
"license": "MIT", | ||
@@ -37,3 +37,3 @@ "repository": { | ||
"dependencies": { | ||
"@webqit/observer": "^2.2.10", | ||
"@webqit/observer": "^2.2.11", | ||
"acorn": "^8.8.1", | ||
@@ -40,0 +40,0 @@ "astring": "^1.8.3" |
/** | ||
* @imports | ||
*/ | ||
import { other } from "../util.js"; | ||
import { env } from "../util.js"; | ||
@@ -13,3 +13,3 @@ export default class _EventTarget extends EventTarget { | ||
super(); | ||
other.setMaxListeners?.( 0, this ); | ||
env.setMaxListeners?.( 0, this ); | ||
} | ||
@@ -16,0 +16,0 @@ |
@@ -23,2 +23,2 @@ | ||
export const other = {}; | ||
export const env = {}; |
@@ -9,6 +9,6 @@ | ||
import { setMaxListeners } from 'events'; | ||
import { other as otherUtil1 } from '../src/util.js'; | ||
import { other as otherUtil2 } from '@webqit/observer/src/util.js'; | ||
otherUtil1.setMaxListeners = setMaxListeners; | ||
otherUtil2.setMaxListeners = setMaxListeners; | ||
import { env as env1 } from '../src/util.js'; | ||
import { env as env2 } from '@webqit/observer/src/util.js'; | ||
env1.setMaxListeners = setMaxListeners; | ||
env2.setMaxListeners = setMaxListeners; | ||
@@ -15,0 +15,0 @@ const promise = ( timeout, value ) => new Promise( res => setTimeout(() => res( value ), timeout ) ); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1850877
Updated@webqit/observer@^2.2.11