Work around module import issues

This commit is contained in:
Christopher Schleiden
2023-03-16 17:23:40 -07:00
parent eb56401caf
commit 699c3a0ab5
+1 -1
View File
@@ -4,7 +4,7 @@ import {File} from "@github/actions-workflow-parser/workflows/file";
import {parseFileReference} from "@github/actions-workflow-parser/workflows/file-reference";
import {TextDocument} from "vscode-languageserver-textdocument";
import {DocumentLink} from "vscode-languageserver-types";
import vscodeURI from "vscode-uri"; // work around issues with the vscode-uri package
import vscodeURI from "vscode-uri/lib/umd"; // work around issues with the vscode-uri package
import {actionUrl, parseActionReference} from "./action";
import {mapRange} from "./utils/range";
import {fetchOrConvertWorkflowTemplate, fetchOrParseWorkflow} from "./utils/workflow-cache";