make the pattern a string in all-versions so it can be serialized, and regex-ify it during implementation
This commit is contained in:
@@ -265,9 +265,7 @@ function getValidProps(versionObj) {
|
||||
|
||||
// If a version has an exception pattern, both '*' and the exception pattern are valid.
|
||||
if (versionObj.allowedFrontmatterPattern) {
|
||||
valid.pattern = new RegExp(
|
||||
`${asteriskPattern.source}|${versionObj.allowedFrontmatterPattern.source}`
|
||||
)
|
||||
valid.pattern = new RegExp(`${asteriskPattern.source}|${versionObj.allowedFrontmatterPattern}`)
|
||||
valid.message = `Must have a value of '*' or ${versionObj.allowedFrontmatterPattern}`
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user