diff --git a/src/lexer/lexer.ts b/src/lexer/lexer.ts index 8431bfa..3de6514 100644 --- a/src/lexer/lexer.ts +++ b/src/lexer/lexer.ts @@ -3,7 +3,7 @@ import * as moo from "moo"; import { Err, Ok, type Result } from "@sniptt/monads"; import { DataviewManager } from "src/api/api.dataview"; -import type { Conditional } from "src/rollers"; +import type { Conditional } from "src/rollers/dice/dice"; export const TAG_REGEX = /(?:\d+[Dd])?#(?:[\p{Letter}\p{Emoji_Presentation}\w/-]+)(?:\|(?:[+-]))?(?:\|(?:[^+-]+))?/u; diff --git a/src/utils/util.ts b/src/utils/util.ts index a7083e2..24a04bd 100644 --- a/src/utils/util.ts +++ b/src/utils/util.ts @@ -1,5 +1,5 @@ import { TFile } from "obsidian"; -import type { ResultInterface, ResultMapInterface } from "src/rollers/dice"; +import type { ResultInterface, ResultMapInterface } from "src/rollers/dice/dice"; const MATCH = /^\|?([\s\S]+?)\|?$/; const SPLIT = /\|/;