Skip to content

Commit

Permalink
fix: Fixes imports for file reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Oct 2, 2024
1 parent 2aff04b commit 8245e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lexer/lexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/util.ts
Original file line number Diff line number Diff line change
@@ -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 = /\|/;
Expand Down

0 comments on commit 8245e29

Please sign in to comment.