fix(validate): add customizations/ to install-only paths
The file reference validator was flagging {project-root}/_bmad/customizations/
paths in SKILL.md files as broken. These are user-created override files that
only exist at install time, not in the source tree.
This commit is contained in:
parent
9f936213a2
commit
5352b33608
|
|
@ -80,7 +80,7 @@ function escapeTableCell(str) {
|
|||
}
|
||||
|
||||
// Path prefixes/patterns that only exist in installed structure, not in source
|
||||
const INSTALL_ONLY_PATHS = ['_config/'];
|
||||
const INSTALL_ONLY_PATHS = ['_config/', 'customizations/'];
|
||||
|
||||
// Files that are generated at install time and don't exist in the source tree
|
||||
const INSTALL_GENERATED_FILES = ['config.yaml', 'config.user.yaml'];
|
||||
|
|
|
|||
Loading…
Reference in New Issue