@maverick-js/signals
Advanced tools
Comparing version 5.11.0 to 5.11.1
@@ -127,3 +127,3 @@ import { SCOPE } from './symbols.js'; | ||
if (Array.isArray(scope._disposal)) { | ||
for (let i = 0; i < scope._disposal.length; i++) { | ||
for (let i = scope._disposal.length - 1; i >= 0; i--) { | ||
const callable = scope._disposal[i]; | ||
@@ -130,0 +130,0 @@ callable.call(callable); |
@@ -127,3 +127,3 @@ import { SCOPE } from './symbols.js'; | ||
if (Array.isArray(scope.$d)) { | ||
for (let i = 0; i < scope.$d.length; i++) { | ||
for (let i = scope.$d.length - 1; i >= 0; i--) { | ||
const callable = scope.$d[i]; | ||
@@ -130,0 +130,0 @@ callable.call(callable); |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "5.11.0", | ||
"version": "5.11.1", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "types": "dist/types/index.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63866