readiness-manager
Advanced tools
Comparing version 1.1.3 to 1.1.4
# CHANGELOG | ||
## 1.1.4 (7 April 2022) | ||
- Fix beacon initial execution, attempt was passed as index of the `forEach`. | ||
## 1.1.3 (2 August 2021) | ||
@@ -32,2 +36,2 @@ | ||
- Adding `chain` option to manager api methods. | ||
- Adding `chain` option to manager api methods. |
{ | ||
"name": "readiness-manager", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "👨💼 Define when your app is ready", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -87,3 +87,3 @@ const { | ||
Object.values(this[Symbols.beacons]) | ||
.map(this[Symbols.execute]); | ||
.forEach((beacon) => this[Symbols.execute](beacon)); | ||
@@ -90,0 +90,0 @@ return this; |
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
15653