From bf7a2458e8d0b14393dc49501d2c6498476883ca Mon Sep 17 00:00:00 2001 From: Alejandro Date: Tue, 16 Apr 2024 00:32:27 -0700 Subject: [PATCH] Merged PR 310: v1.30.1 - Fix imports in index.ts (#289) - Fix imports in index.ts. This broke consumers of the npm package - Bump version to 1.30.1 --- index.ts | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index 95ba616..2500b72 100644 --- a/index.ts +++ b/index.ts @@ -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; diff --git a/package.json b/package.json index 55e1eb7..bf1fd9e 100644 --- a/package.json +++ b/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",