aberdeen 1.0.6 → 1.0.7
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/dist/aberdeen.js +3 -2
- package/dist/aberdeen.js.map +3 -3
- package/dist-min/aberdeen.js +2 -2
- package/dist-min/aberdeen.js.map +3 -3
- package/package.json +1 -1
- package/src/aberdeen.ts +3 -1
- package/html-to-aberdeen +0 -354
package/dist/aberdeen.js
CHANGED
|
@@ -127,7 +127,7 @@ function runQueue() {
|
|
|
127
127
|
sortedQueue = undefined;
|
|
128
128
|
runQueueDepth = 0;
|
|
129
129
|
time = Date.now() - time;
|
|
130
|
-
if (time >
|
|
130
|
+
if (time > 9)
|
|
131
131
|
console.debug(`Aberdeen queue took ${time}ms`);
|
|
132
132
|
}
|
|
133
133
|
function partToStr(part) {
|
|
@@ -419,6 +419,7 @@ class OnEachScope extends Scope {
|
|
|
419
419
|
for (const scope of this.byIndex.values()) {
|
|
420
420
|
scope.delete();
|
|
421
421
|
}
|
|
422
|
+
sortedQueue?.remove(this);
|
|
422
423
|
this.byIndex.clear();
|
|
423
424
|
setTimeout(() => {
|
|
424
425
|
this.sortedSet.clear();
|
|
@@ -1204,5 +1205,5 @@ export {
|
|
|
1204
1205
|
$
|
|
1205
1206
|
};
|
|
1206
1207
|
|
|
1207
|
-
//# debugId=
|
|
1208
|
+
//# debugId=22FD247DC29D103664756E2164756E21
|
|
1208
1209
|
//# sourceMappingURL=aberdeen.js.map
|