Skip to content

Commit

Permalink
Merged PR 310: v1.30.1 - Fix imports in index.ts (#289)
Browse files Browse the repository at this point in the history
- Fix imports in index.ts. This broke consumers of the npm package
- Bump version to 1.30.1
  • Loading branch information
alopezlago committed Apr 16, 2024
1 parent a59932f commit bf7a245
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.ts
Expand Up @@ -9,8 +9,8 @@ import {
splitFormattedTextIntoWords as ftpSplitFormattedTextIntoWords,
defaultPronunciationGuideMarkers as ftpDefaultPronunciationGuideMarkers,
defaultReaderDirectives as ftpDefaultReaderDirectives,
} from "src/parser/FormattedTextParser";
import { IFormattedText as iFormattedText } from "src/parser/IFormattedText";
} from "./src/parser/FormattedTextParser";
import { IFormattedText as iFormattedText } from "./src/parser/IFormattedText";

export const ModaqControl = control;

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "modaq",
"version": "1.30.0",
"version": "1.30.1",
"description": "Quiz Bowl Reader using TypeScript, React, and MobX",
"repository": {
"type": "git",
Expand Down

0 comments on commit bf7a245

Please sign in to comment.