safepropel 1.4.6 → 1.4.7

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.
Binary file
@@ -217,7 +217,8 @@ class WorkflowExecutor {
217
217
  const outputSection = outputSectionMatch ? outputSectionMatch[0] : workflow.content;
218
218
 
219
219
  // Extract template reference from output section - flexible pattern
220
- const templateMatch = outputSection.match(/using\s+`(\.propel\/templates\/[a-z-]+\.md)`\s+template/i);
220
+ // Matches any markdown file in .propel/templates/ directory
221
+ const templateMatch = outputSection.match(/`(\.propel\/templates\/[\w-]+\.md)`/i);
221
222
  const templates = [];
222
223
 
223
224
  if (templateMatch) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "safepropel",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "SafePropel Framework - Hybrid Security Model: Encrypted Workflows + Transparent Rules & Templates with Dynamic Loading",
5
5
  "main": "engine/workflow-executor.js",
6
6
  "scripts": {