From 798a8642b485488bc6725a7e5cfb8fe1975a1dab Mon Sep 17 00:00:00 2001 From: David Goss Date: Fri, 22 Apr 2022 08:54:02 +0100 Subject: [PATCH] fix: readd old bin alias for backwards compat (#2008) * fix: readd old bin alias for backwards compat * add CHANGELOG.md entry --- CHANGELOG.md | 3 +++ bin/cucumber-js | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 bin/cucumber-js diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b9c4d0a3..1f431f465 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO ### Added - Explicit support for Node.js 18 ([#2007](https://github.com/cucumber/cucumber-js/pull/2007)) +### Fixed +- Re-add `cucumber-js` bin file for backwards compatibility ([#2008](https://github.com/cucumber/cucumber-js/pull/2008)) + ## [8.1.1] - 2022-04-20 ### Fixed - Capture dependency on `@cucumber/message-streams` to satisfy peer requirement from `@cucumber/gherkin-streams` ([#2006](https://github.com/cucumber/cucumber-js/pull/2006)) diff --git a/bin/cucumber-js b/bin/cucumber-js new file mode 100755 index 000000000..2460cb264 --- /dev/null +++ b/bin/cucumber-js @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +require('../lib/cli/run.js').default();