Skip to content

Commit ccd721b

Browse files
authored
fix: add name to cjs package.json (#87)
* fix: add name to cjs package.json This `package.json` was confusing a tool I'm trying to use to generate API documentation in cucumber-js - just adding the name there seems to be enough. * Update CHANGELOG.md
1 parent 0bc2800 commit ccd721b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
9+
### Fixed
10+
- Add missing `name` field in CommonJS package file ([#87](https://github.com/cucumber/cucumber-expressions/pull/87))
911

1012
## [15.0.1] - 2022-01-04
1113
### Fixed

javascript/package.cjs.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
{"type": "commonjs"}
1+
{
2+
"name": "@cucumber/cucumber-expressions",
3+
"type": "commonjs"
4+
}

0 commit comments

Comments
 (0)