diff --git a/CHANGELOG.md b/CHANGELOG.md index 085a694f..20132cc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added - (Javascript) Support for compiled cjs style step definitions ([#222](https://github.com/cucumber/language-service/pull/222)) +- Exposed `buildSuggestionFromCucumberExpression` and `buildSuggestionsFromRegularExpression` in `index.ts` ([#227](https://github.com/cucumber/language-service/pull/227)) ### Fixed - Parameter highlighting for scenario outline steps with leading spaces ([#219](https://github.com/cucumber/language-service/pull/219)) diff --git a/src/suggestions/index.ts b/src/suggestions/index.ts index edd7c8a6..f76ae8c6 100644 --- a/src/suggestions/index.ts +++ b/src/suggestions/index.ts @@ -1,2 +1,4 @@ +export * from './buildSuggestionFromCucumberExpression.js' export * from './buildSuggestions.js' +export * from './buildSuggestionsFromRegularExpression.js' export * from './types.js'