Skip to content

Commit

Permalink
add an explicit export of Node to work around another deno bundle bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cscheid committed Nov 16, 2023
1 parent a9917c9 commit 296e882
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/core/deno-dom.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down Expand Up @@ -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";

0 comments on commit 296e882

Please sign in to comment.