From 699c3a0ab5876d9e1814e0c4cb77c89a821aa3e4 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Thu, 16 Mar 2023 17:23:40 -0700 Subject: [PATCH] Work around module import issues --- languageservice/src/document-links.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languageservice/src/document-links.ts b/languageservice/src/document-links.ts index 16df62a..6341cae 100644 --- a/languageservice/src/document-links.ts +++ b/languageservice/src/document-links.ts @@ -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";