v0.1.63 - Test fixed workflow
🔧 Workflow Testing
- Testing GitHub Action workflow fixes: This release tests the git stash fix for the workflow
- Fixed git checkout issue: Added proper stashing before branch switching in publish workflow
- Improved git operations: Now includes package-lock.json in git add operations
📦 Previous Releases
- v0.1.61: Fixed SpeechMarkdown export issue - users can now import
configureSpeechMarkdowndirectly - v0.1.62: Workflow fixes (git stash before checkout)
📖 Usage
Users can use either import method:
// Method 1: Direct import (NEW)
import { configureSpeechMarkdown } from "js-tts-wrapper";
configureSpeechMarkdown({ enabled: true });
// Method 2: Namespace import (EXISTING)
import { SpeechMarkdown } from "js-tts-wrapper";
SpeechMarkdown.configureSpeechMarkdown({ enabled: true });Full Changelog: v0.1.62...v0.1.63