From 9d651f50a82c3506fabe2b5be4eafe3a0c251fee Mon Sep 17 00:00:00 2001 From: James Kent Date: Tue, 16 Jul 2024 15:45:48 +0100 Subject: [PATCH 1/3] Adds other build suggestions to the index.ts file --- src/suggestions/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/suggestions/index.ts b/src/suggestions/index.ts index edd7c8a6..64f54861 100644 --- a/src/suggestions/index.ts +++ b/src/suggestions/index.ts @@ -1,2 +1,4 @@ export * from './buildSuggestions.js' +export * from './buildSuggestionFromCucumberExpression.js' +export * from './buildSuggestionsFromRegularExpression.js' export * from './types.js' From c5c536701e046143452e396d5569e6a117bf7d9c Mon Sep 17 00:00:00 2001 From: James Kent Date: Wed, 17 Jul 2024 16:57:55 +0100 Subject: [PATCH 2/3] Update imports and ChangeLog --- CHANGELOG.md | 1 + src/suggestions/index.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 085a694f..f8c962ea 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)) +- Adds buildSuggestionFromCucumberExpression and buildSuggestionsFromRegularExpression to index([#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 64f54861..f76ae8c6 100644 --- a/src/suggestions/index.ts +++ b/src/suggestions/index.ts @@ -1,4 +1,4 @@ -export * from './buildSuggestions.js' export * from './buildSuggestionFromCucumberExpression.js' +export * from './buildSuggestions.js' export * from './buildSuggestionsFromRegularExpression.js' export * from './types.js' From 5867d08f3aa0ad3a4928d0e8530b19cf323cccd7 Mon Sep 17 00:00:00 2001 From: Kieran Ryan Date: Sat, 20 Jul 2024 15:15:36 +0000 Subject: [PATCH 3/3] fix: backticks around changelog code references --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8c962ea..20132cc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +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)) -- Adds buildSuggestionFromCucumberExpression and buildSuggestionsFromRegularExpression to index([#227](https://github.com/cucumber/language-service/pull/227)) +- 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))