File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
Please see [ CONTRIBUTING.md] ( ./CONTRIBUTING.md ) on how to contribute to Cucumber.
9
9
10
10
## [ Unreleased]
11
+ ### Fixed
12
+ - Resolve release process issues
11
13
12
14
## [ 10.2.0] - 2024-01-07
13
15
### Changed
Original file line number Diff line number Diff line change @@ -515,7 +515,7 @@ export class UsageJsonFormatter extends Formatter {
515
515
}
516
516
517
517
// @public (undocumented)
518
- export const version = " 10.1.0 " ;
518
+ export const version: string ;
519
519
520
520
// @public (undocumented)
521
521
export const When: IDefineStep_2 ;
Original file line number Diff line number Diff line change @@ -16,12 +16,15 @@ import { default as _PickleFilter } from './pickle_filter'
16
16
import * as parallelCanAssignHelpers from './support_code_library_builder/parallel_can_assign_helpers'
17
17
import { default as _Runtime } from './runtime'
18
18
import supportCodeLibraryBuilder from './support_code_library_builder'
19
+ import { version as _version } from './version'
20
+
21
+ // type version as string to avoid tripping api-extractor every release
22
+ export const version = _version as string
19
23
20
24
// Top level
21
25
export { default as supportCodeLibraryBuilder } from './support_code_library_builder'
22
26
export { default as DataTable } from './models/data_table'
23
27
export { default as TestCaseHookDefinition } from './models/test_case_hook_definition'
24
- export { version } from './version'
25
28
26
29
// Formatters
27
30
export { default as Formatter , IFormatterOptions } from './formatter'
Original file line number Diff line number Diff line change 1
1
import cucumber from './index.js'
2
2
3
+ export const version = cucumber . version
4
+
3
5
export const supportCodeLibraryBuilder = cucumber . supportCodeLibraryBuilder
4
6
export const Status = cucumber . Status
5
7
export const DataTable = cucumber . DataTable
6
8
export const TestCaseHookDefinition = cucumber . TestCaseHookDefinition
7
- export const version = cucumber . version
8
9
9
10
export const Formatter = cucumber . Formatter
10
11
export const FormatterBuilder = cucumber . FormatterBuilder
You can’t perform that action at this time.
0 commit comments