diff --git a/package.json b/package.json index 2d468feb2..cc5dbffad 100644 --- a/package.json +++ b/package.json @@ -162,10 +162,6 @@ "lib": "./lib" }, "main": "./lib/index.js", - "exports": { - "import": "./wrapper.mjs", - "require": "./lib/index.js" - }, "types": "./lib/index.d.ts", "engines": { "node": ">=10" diff --git a/wrapper.mjs b/wrapper.mjs deleted file mode 100644 index 6e0e04cec..000000000 --- a/wrapper.mjs +++ /dev/null @@ -1,6 +0,0 @@ -import cucumber from './lib/index.js' - -export const Given = cucumber.Given -export const When = cucumber.When -export const Then = cucumber.Then -export const BeforeAll = cucumber.BeforeAll