From 296e882c92135feead4f6b8ab53a6f107d2321fa Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Thu, 16 Nov 2023 11:14:35 -0700 Subject: [PATCH] add an explicit export of Node to work around another deno bundle bug --- src/core/deno-dom.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/core/deno-dom.ts b/src/core/deno-dom.ts index 4e6562da5f..f8ad110bfe 100644 --- a/src/core/deno-dom.ts +++ b/src/core/deno-dom.ts @@ -1,9 +1,8 @@ /* -* deno-dom.ts -* -* Copyright (C) 2020-2022 Posit Software, PBC -* -*/ + * deno-dom.ts + * + * Copyright (C) 2020-2022 Posit Software, PBC + */ import { debug } from "log/mod.ts"; @@ -148,4 +147,4 @@ export async function initDenoDom() { export * from "deno_dom/src/api.ts"; export { DOMParser } from "deno_dom/src/dom/dom-parser.ts"; -export { NodeType } from "deno_dom/src/dom/node.ts"; +export { Node, NodeType } from "deno_dom/src/dom/node.ts";