v18.0.0
Breaking changes:
-
TypeScript users that have previously been unable to upgrade
moduleResolution
tonode16
, and use thepaths
property as a workaround, must update their paths.From this
{ "compilerOptions": { "paths": { "@badeball/cypress-cucumber-preprocessor/*": ["./node_modules/@badeball/cypress-cucumber-preprocessor/dist/bundler-utils/*"] } } }
To this
{ "compilerOptions": { "paths": { "@badeball/cypress-cucumber-preprocessor/*": ["./node_modules/@badeball/cypress-cucumber-preprocessor/dist/subpath-entrypoints/*"] } } }
Other changes:
- Add experimental support for pretty output similar to that of
@cucumber/pretty-formatter
, fixes #810.