diff --git a/CHANGELOG.md b/CHANGELOG.md index ee85172..64c234b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ # Changelog -## 6.2.3 +## 6.2.4 -July 28, 2025 +Aug 18, 2025 -- Add LWC compatible output (#264) - - Added deployment instructions on readme +- Ensure all types are emitted during the build process (#266) + - Some types were missing from the build process which caused build errors for some typescript users -## 6.2.2 +## 6.2.2 / 6.2.3 July 8, 2025 diff --git a/src/index.ts b/src/index.ts index a2e3961..ec03dca 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,3 +8,7 @@ export * from './api/api-models'; export * from './api/public-utils'; export * from './composer/composer'; export type { FormatOptions } from './formatter/formatter'; +export type { ParseQueryConfig } from './parser/parser'; + +// Re-export chevrotain types that are used in public APIs +export type { CstNode, CstParser, ILexingError, IRecognitionException } from 'chevrotain';