Releases: badeball/cypress-cucumber-preprocessor
Releases · badeball/cypress-cucumber-preprocessor
v22.2.0
v22.1.0
-
Gracefully handle sourcemaps when running component tests with webpack and chunks enabled (default behavior), fixes #1296.
-
Avoid setting
sourcesContent: false
to esbuild when using theprettySourceMap
option, relates to #1285.-
This means that the default bundle when using
prettySourceMap
is larger and may affect performance. However, the in-app experience is likely more aligned with user expectation. Users can disable this behavior by explicitly configuringsourcesContent: false
themselves, as shown below.on( "file:preprocessor", createBundler({ sourcesContent: false, plugins: [createEsbuildPlugin(config, { prettySourceMap: true })], }) );
-
v22.0.1
v22.0.0
v21.0.3
v21.0.2
v21.0.1
v21.0.0
Breaking changes:
-
Exported member
preprocessor
of@badeball/cypress-cucumber-preprocessor/browserify
is removed.- User of
@badeball/cypress-cucumber-preprocessor/browserify
should change their Cypress config in accordance with the related examples.
- User of
-
The executable
cypress-cucumber-diagnostics
has been replaced by adryRun
option, relates to #1120 and #1129.- This is a massive overhaul of a feature that was originally ill-thought-out. I'm curious about the reception.
Other changees: