Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';