@velvetmonkey/vault-core 2.0.106 → 2.0.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/protectedZones.js +1 -0
- package/package.json +1 -1
package/dist/protectedZones.js
CHANGED
|
@@ -115,6 +115,7 @@ export function getProtectedZones(content) {
|
|
|
115
115
|
if (tree) {
|
|
116
116
|
return getProtectedZonesFromAst(tree, content);
|
|
117
117
|
}
|
|
118
|
+
console.error('[ProtectedZones] AST parse failed, falling back to regex detection');
|
|
118
119
|
return getProtectedZonesRegex(content);
|
|
119
120
|
}
|
|
120
121
|
/**
|
package/package.json
CHANGED