Cache transformed workflows separately

This commit is contained in:
Josh Gross
2023-03-21 15:52:25 -04:00
parent d1baf65c18
commit 8e03b387a2
2 changed files with 31 additions and 8 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ export async function complete(
content: newDoc.getText()
};
const parsedWorkflow = fetchOrParseWorkflow(file, textDocument.uri);
if (!parsedWorkflow?.value) {
const parsedWorkflow = fetchOrParseWorkflow(file, textDocument.uri, true);
if (!parsedWorkflow.value) {
return [];
}