Skip to content

Commit

Permalink
Fix module paths (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
spenserblack authored Nov 14, 2024
1 parent d7cb640 commit bc9867f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/steamdown/src/parser/inline/bold.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type * as nodes from "../../nodes";
import type { Parser } from "../types";
import { ParseError } from "../errors";
import { parse } from "./parse";
import { ParseError } from "../errors.js";
import { parse } from "./parse.js";

/**
* Parser for a bold node.
Expand Down
4 changes: 2 additions & 2 deletions packages/steamdown/src/parser/inline/italics.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type * as nodes from "../../nodes";
import type { Parser } from "../types";
import { ParseError } from "../errors";
import { parse } from "./parse";
import { ParseError } from "../errors.js";
import { parse } from "./parse.js";

/**
* Parser for an italics node.
Expand Down

0 comments on commit bc9867f

Please sign in to comment.