From 158eb4b442b6256ad35bbf4adb40bc73237789c3 Mon Sep 17 00:00:00 2001 From: James Kent Date: Sat, 20 Jul 2024 16:18:55 +0100 Subject: [PATCH] Expose all build suggestion APIs in `index.ts` (#227) * Adds other build suggestions to the index.ts file * Update imports and ChangeLog * fix: backticks around changelog code references --------- Co-authored-by: Kieran Ryan --- CHANGELOG.md | 1 + src/suggestions/index.ts | 2 ++ 2 files changed, 3 insertions(+) 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'