@forestadmin/context
Advanced tools
Comparing version 1.42.3 to 1.42.4
{ | ||
"name": "@forestadmin/context", | ||
"version": "1.42.3", | ||
"version": "1.42.4", | ||
"description": "Minimal context management helper for applications and libraries.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -81,5 +81,5 @@ module.exports = class Metadata { | ||
.filter(({ type }) => type !== 'step') | ||
.filter(({ path }) => stepsPaths.includes(path)) | ||
.filter(({ path }) => stepsPaths.some(stepPath => path.startsWith(stepPath))) | ||
.map(({ name }) => name); | ||
} | ||
}; |
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
67246