Update dependency babel-plugin-tester to v12 #702
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
^10.1.0
->^12.0.0
Release Notes
babel-utils/babel-plugin-tester (babel-plugin-tester)
v12.0.0
Compare Source
💥 BREAKING CHANGES 💥
Minimum supported Node.js version is now 20.18.0
Default exports are no longer available. See usage instructions for details on proper import syntax.
ResultFormatter
is no longer synchronous and can now return aPromise
.Adoption of prettier@3 requires some versions of Node to be executed with the
--experimental-vm-modules
option. E.g.NODE_OPTIONS="--no-warnings --experimental-vm-modules" npx jest
.Attempting to install babel-plugin-tester alongside jest@<30 will cause NPM to fail with
ERESOLVE
. This is because only jest@>=30 (jest-snapshot) supports the prettier@3 asynchronous interface.✨ Features
outputRaw
([e9d5aa1
][4]) see [#186][5]PluginItem
s ([bf0a088
][6])3334248
][7])🪄 Fixes
1047e5c
][8])⚙️ Build System
89ec951
][9])879dd6b
][10])7590b87
][11])3c2538c
][12])e0a29da
][13])7ea13c3
][14])76dcccd
][15])bcbb568
][16])cbb4215
][17])ee6f7da
][18])03734ea
][19])d0b722f
][21])🧙🏿 Refactored
b02d4f0
][22])v11.0.4
Compare Source
💥 BREAKING CHANGES 💥
error
no longer accepts arbitrary class constructorserror
(akathrows
) no longer accepts arbitrary class constructors. Any provided class constructor must extendError
, e.g. built-ins likeSyntaxError
or custom error classes likeclass MyError extends Error
. Thanks to the nature of JavaScript, **providing a class constructor that does not extendError
will lead to undefined behavior**.error
only captures exceptions from Babelerror
(akathrows
) no longer potentially captures exceptions thrown by theformatResult
function. If theformatResult
function throws, the entire test will fail immediately.TypeError
for config error;AssertionError
for test errorAll configuration-related issues now throw
TypeError
instead ofAssertionError
.AssertionError
is now exclusively used for failing tests. Additionally, the text of some error messages has been updated.All test titles are now numbered
All test titles are now numbered (e.g.
"1. ..."
,"2. ..."
, etc), including fixtures tests and tests with custom titles.Built-in TypeScript support
TypeScript types are now included within the package itself, obviating the need to install a separate types package. Installing the old types package alongside this version of babel-plugin-tester will cause conflicts.
Fixture configuration schema is standardized
In previous versions of babel-plugin-tester, you could provide any key to
options.json
and it would be passed as-is to the plugin under test. This made it impossible to allow fixtures to be configured with the same flexibility as test objects. In this version of babel-plugin-tester, fixtureoptions.json
(andoptions.js
) files must return a standard set of options. Non-standard properties are silently ignored. For instance: to pass options to the plugin under test, they must be provided viapluginOptions
.Global
describe
andit
functions must be definedBabel-plugin-tester will refuse to run if
describe
,it
,it.only
, orit.skip
are not globally available.Global
setup
/teardown
no longer overwrites local versionsIn previous versions of babel-plugin-tester, test-level
setup
andteardown
functions overrode globalsetup
andteardown
functions. In this version of babel-plugin-tester, the globalsetup
andteardown
functions will be called alongside their test-level counterparts for each test and in a well-defined order (see documentation).Implicit "global" options merging is no longer supported
In previous versions of babel-plugin-tester, any test object and fixture configuration option could be passed directly to babel-plugin-tester and apply "globally" across all test objects and fixtures. This was even the case for options that made no sense in a "global" context, such as
only
,skip
, andcode
. In this version of babel-plugin-tester, only options explicitly listed in the documentation can be passed directly and applied globally. Unrecognized "rest" options are silently ignored.Test/fixture configuration is resolved early and consistently
In previous versions of babel-plugin-tester, test object and fixture configuration options were resolved in various places, with some options getting finalized before
it(...)
anddescribe(...)
were called and others being determined as Jest was executing the test. In this version, all configuration options are resolved and finalized beforeit(...)
anddescribe(...)
are called. This also means configurations are finalized _before_ hooks likebeforeAll
get called by the testing framework.babelOptions.filename
is now set tofilepath
by default rather thanundefined
.In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to
undefined
. With this version, the customizer now unsets these properties (sets them toundefined
), allowing the end user to easily unset defaults (e.g.filename
).Minimum recommended node version bumped from 10.13.0 to 14.20.0
Plugin names are once again automatically determined by analyzing the return value of the plugin function. Though this is implemented in a backwards-compatible way, there is a [small caveat]([https://github.com/babel-utils/babel-plugin-tester#pluginname-inference-caveat][24]).
✨ Features
73b90b3
][25])9d1b321
][26])exec
/execFixture
support via Node's VM module ([4754f42
][27])89b58b5
][29])8c8b858
][31])f54deda
][32])13626d1
][33])f9ad903
][35])titleNumbering
andrestartTitleNumbering
options ([09e792d
][36])setup
/teardown
run order ([4ea283f
][37])4c7c6e7
][38])f214995
][39])🪄 Fixes
2acfe37
][40])481be19
][42])fbb6c19
][44])⚙️ Build System
0bdb351
][46])00712c0
][47])5f588e9
][49])d5b4d9c
][50])🧙🏿 Refactored
undefined
([74af680
][51])0c44392
][52])🏗️ Patch babel-plugin-tester[@11.0.4][53] (2023-01-25)
🪄 Fixes
0306698
][54])🏗️ Patch babel-plugin-tester[@11.0.3][55] (2023-01-24)
🪄 Fixes
e9ebcdd
][56])🏗️ Patch babel-plugin-tester[@11.0.2][57] (2023-01-23)
🪄 Fixes
330aa1e
][58])2c4cd84
][59])⚙️ Build System
850d58c
][60])🏗️ Patch babel-plugin-tester[@11.0.1][61] (2023-01-18)
🪄 Fixes
config
option is still supported byprettierFormatter
([e48badf
][62]) see [#139][63]v11.0.3
Compare Source
💥 BREAKING CHANGES 💥
error
no longer accepts arbitrary class constructorserror
(akathrows
) no longer accepts arbitrary class constructors. Any provided class constructor must extendError
, e.g. built-ins likeSyntaxError
or custom error classes likeclass MyError extends Error
. Thanks to the nature of JavaScript, **providing a class constructor that does not extendError
will lead to undefined behavior**.error
only captures exceptions from Babelerror
(akathrows
) no longer potentially captures exceptions thrown by theformatResult
function. If theformatResult
function throws, the entire test will fail immediately.TypeError
for config error;AssertionError
for test errorAll configuration-related issues now throw
TypeError
instead ofAssertionError
.AssertionError
is now exclusively used for failing tests. Additionally, the text of some error messages has been updated.All test titles are now numbered
All test titles are now numbered (e.g.
"1. ..."
,"2. ..."
, etc), including fixtures tests and tests with custom titles.Built-in TypeScript support
TypeScript types are now included within the package itself, obviating the need to install a separate types package. Installing the old types package alongside this version of babel-plugin-tester will cause conflicts.
Fixture configuration schema is standardized
In previous versions of babel-plugin-tester, you could provide any key to
options.json
and it would be passed as-is to the plugin under test. This made it impossible to allow fixtures to be configured with the same flexibility as test objects. In this version of babel-plugin-tester, fixtureoptions.json
(andoptions.js
) files must return a standard set of options. Non-standard properties are silently ignored. For instance: to pass options to the plugin under test, they must be provided viapluginOptions
.Global
describe
andit
functions must be definedBabel-plugin-tester will refuse to run if
describe
,it
,it.only
, orit.skip
are not globally available.Global
setup
/teardown
no longer overwrites local versionsIn previous versions of babel-plugin-tester, test-level
setup
andteardown
functions overrode globalsetup
andteardown
functions. In this version of babel-plugin-tester, the globalsetup
andteardown
functions will be called alongside their test-level counterparts for each test and in a well-defined order (see documentation).Implicit "global" options merging is no longer supported
In previous versions of babel-plugin-tester, any test object and fixture configuration option could be passed directly to babel-plugin-tester and apply "globally" across all test objects and fixtures. This was even the case for options that made no sense in a "global" context, such as
only
,skip
, andcode
. In this version of babel-plugin-tester, only options explicitly listed in the documentation can be passed directly and applied globally. Unrecognized "rest" options are silently ignored.Test/fixture configuration is resolved early and consistently
In previous versions of babel-plugin-tester, test object and fixture configuration options were resolved in various places, with some options getting finalized before
it(...)
anddescribe(...)
were called and others being determined as Jest was executing the test. In this version, all configuration options are resolved and finalized beforeit(...)
anddescribe(...)
are called. This also means configurations are finalized _before_ hooks likebeforeAll
get called by the testing framework.babelOptions.filename
is now set tofilepath
by default rather thanundefined
.In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to
undefined
. With this version, the customizer now unsets these properties (sets them toundefined
), allowing the end user to easily unset defaults (e.g.filename
).Minimum recommended node version bumped from 10.13.0 to 14.20.0
Plugin names are once again automatically determined by analyzing the return value of the plugin function. Though this is implemented in a backwards-compatible way, there is a [small caveat]([https://github.com/babel-utils/babel-plugin-tester#pluginname-inference-caveat][24]).
✨ Features
73b90b3
][25])9d1b321
][26])exec
/execFixture
support via Node's VM module ([4754f42
][27])89b58b5
][29])8c8b858
][31])f54deda
][32])13626d1
][33])f9ad903
][35])titleNumbering
andrestartTitleNumbering
options ([09e792d
][36])setup
/teardown
run order ([4ea283f
][37])4c7c6e7
][38])f214995
][39])🪄 Fixes
2acfe37
][40])481be19
][42])fbb6c19
][44])⚙️ Build System
0bdb351
][46])00712c0
][47])5f588e9
][49])d5b4d9c
][50])🧙🏿 Refactored
undefined
([74af680
][51])0c44392
][52])🏗️ Patch babel-plugin-tester[@11.0.4][53] (2023-01-25)
🪄 Fixes
0306698
][54])🏗️ Patch babel-plugin-tester[@11.0.3][55] (2023-01-24)
🪄 Fixes
e9ebcdd
][56])🏗️ Patch babel-plugin-tester[@11.0.2][57] (2023-01-23)
🪄 Fixes
330aa1e
][58])2c4cd84
][59])⚙️ Build System
850d58c
][60])🏗️ Patch babel-plugin-tester[@11.0.1][61] (2023-01-18)
🪄 Fixes
config
option is still supported byprettierFormatter
([e48badf
][62]) see [#139][63]v11.0.2
Compare Source
💥 BREAKING CHANGES 💥
error
no longer accepts arbitrary class constructorserror
(akathrows
) no longer accepts arbitrary class constructors. Any provided class constructor must extendError
, e.g. built-ins likeSyntaxError
or custom error classes likeclass MyError extends Error
. Thanks to the nature of JavaScript, **providing a class constructor that does not extendError
will lead to undefined behavior**.error
only captures exceptions from Babelerror
(akathrows
) no longer potentially captures exceptions thrown by theformatResult
function. If theformatResult
function throws, the entire test will fail immediately.TypeError
for config error;AssertionError
for test errorAll configuration-related issues now throw
TypeError
instead ofAssertionError
.AssertionError
is now exclusively used for failing tests. Additionally, the text of some error messages has been updated.All test titles are now numbered
All test titles are now numbered (e.g.
"1. ..."
,"2. ..."
, etc), including fixtures tests and tests with custom titles.Built-in TypeScript support
TypeScript types are now included within the package itself, obviating the need to install a separate types package. Installing the old types package alongside this version of babel-plugin-tester will cause conflicts.
Fixture configuration schema is standardized
In previous versions of babel-plugin-tester, you could provide any key to
options.json
and it would be passed as-is to the plugin under test. This made it impossible to allow fixtures to be configured with the same flexibility as test objects. In this version of babel-plugin-tester, fixtureoptions.json
(andoptions.js
) files must return a standard set of options. Non-standard properties are silently ignored. For instance: to pass options to the plugin under test, they must be provided viapluginOptions
.Global
describe
andit
functions must be definedBabel-plugin-tester will refuse to run if
describe
,it
,it.only
, orit.skip
are not globally available.Global
setup
/teardown
no longer overwrites local versionsIn previous versions of babel-plugin-tester, test-level
setup
andteardown
functions overrode globalsetup
andteardown
functions. In this version of babel-plugin-tester, the globalsetup
andteardown
functions will be called alongside their test-level counterparts for each test and in a well-defined order (see documentation).Implicit "global" options merging is no longer supported
In previous versions of babel-plugin-tester, any test object and fixture configuration option could be passed directly to babel-plugin-tester and apply "globally" across all test objects and fixtures. This was even the case for options that made no sense in a "global" context, such as
only
,skip
, andcode
. In this version of babel-plugin-tester, only options explicitly listed in the documentation can be passed directly and applied globally. Unrecognized "rest" options are silently ignored.Test/fixture configuration is resolved early and consistently
In previous versions of babel-plugin-tester, test object and fixture configuration options were resolved in various places, with some options getting finalized before
it(...)
anddescribe(...)
were called and others being determined as Jest was executing the test. In this version, all configuration options are resolved and finalized beforeit(...)
anddescribe(...)
are called. This also means configurations are finalized _before_ hooks likebeforeAll
get called by the testing framework.babelOptions.filename
is now set tofilepath
by default rather thanundefined
.In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to
undefined
. With this version, the customizer now unsets these properties (sets them toundefined
), allowing the end user to easily unset defaults (e.g.filename
).Minimum recommended node version bumped from 10.13.0 to 14.20.0
Plugin names are once again automatically determined by analyzing the return value of the plugin function. Though this is implemented in a backwards-compatible way, there is a [small caveat]([https://github.com/babel-utils/babel-plugin-tester#pluginname-inference-caveat][24]).
✨ Features
73b90b3
][25])9d1b321
][26])exec
/execFixture
support via Node's VM module ([4754f42
][27])89b58b5
][29])8c8b858
][31])f54deda
][32])13626d1
][33])f9ad903
][35])titleNumbering
andrestartTitleNumbering
options ([09e792d
][36])setup
/teardown
run order ([4ea283f
][37])4c7c6e7
][38])f214995
][39])🪄 Fixes
2acfe37
][40])481be19
][42])fbb6c19
][44])⚙️ Build System
0bdb351
][46])00712c0
][47])5f588e9
][49])d5b4d9c
][50])🧙🏿 Refactored
undefined
([74af680
][51])0c44392
][52])🏗️ Patch babel-plugin-tester[@11.0.4][53] (2023-01-25)
🪄 Fixes
0306698
][54])🏗️ Patch babel-plugin-tester[@11.0.3][55] (2023-01-24)
🪄 Fixes
e9ebcdd
][56])🏗️ Patch babel-plugin-tester[@11.0.2][57] (2023-01-23)
🪄 Fixes
330aa1e
][58])2c4cd84
][59])⚙️ Build System
850d58c
][60])🏗️ Patch babel-plugin-tester[@11.0.1][61] (2023-01-18)
🪄 Fixes
config
option is still supported byprettierFormatter
([e48badf
][62]) see [#139][63]v11.0.1
Compare Source
💥 BREAKING CHANGES 💥
error
no longer accepts arbitrary class constructorserror
(akathrows
) no longer accepts arbitrary class constructors. Any provided class constructor must extendError
, e.g. built-ins likeSyntaxError
or custom error classes likeclass MyError extends Error
. Thanks to the nature of JavaScript, **providing a class constructor that does not extendError
will lead to undefined behavior**.error
only captures exceptions from Babelerror
(akathrows
) no longer potentially captures exceptions thrown by theformatResult
function. If theformatResult
function throws, the entire test will fail immediately.TypeError
for config error;AssertionError
for test errorAll configuration-related issues now throw
TypeError
instead ofAssertionError
.AssertionError
is now exclusively used for failing tests. Additionally, the text of some error messages has been updated.All test titles are now numbered
All test titles are now numbered (e.g.
"1. ..."
,"2. ..."
, etc), including fixtures tests and tests with custom titles.Built-in TypeScript support
TypeScript types are now included within the package itself, obviating the need to install a separate types package. Installing the old types package alongside this version of babel-plugin-tester will cause conflicts.
Fixture configuration schema is standardized
In previous versions of babel-plugin-tester, you could provide any key to
options.json
and it would be passed as-is to the plugin under test. This made it impossible to allow fixtures to be configured with the same flexibility as test objects. In this version of babel-plugin-tester, fixtureoptions.json
(andoptions.js
) files must return a standard set of options. Non-standard properties are silently ignored. For instance: to pass options to the plugin under test, they must be provided viapluginOptions
.Global
describe
andit
functions must be definedBabel-plugin-tester will refuse to run if
describe
,it
,it.only
, orit.skip
are not globally available.Global
setup
/teardown
no longer overwrites local versionsIn previous versions of babel-plugin-tester, test-level
setup
andteardown
functions overrode globalsetup
andteardown
functions. In this version of babel-plugin-tester, the globalsetup
andteardown
functions will be called alongside their test-level counterparts for each test and in a well-defined order (see documentation).Implicit "global" options merging is no longer supported
In previous versions of babel-plugin-tester, any test object and fixture configuration option could be passed directly to babel-plugin-tester and apply "globally" across all test objects and fixtures. This was even the case for options that made no sense in a "global" context, such as
only
,skip
, andcode
. In this version of babel-plugin-tester, only options explicitly listed in the documentation can be passed directly and applied globally. Unrecognized "rest" options are silently ignored.Test/fixture configuration is resolved early and consistently
In previous versions of babel-plugin-tester, test object and fixture configuration options were resolved in various places, with some options getting finalized before
it(...)
anddescribe(...)
were called and others being determined as Jest was executing the test. In this version, all configuration options are resolved and finalized beforeit(...)
anddescribe(...)
are called. This also means configurations are finalized _before_ hooks likebeforeAll
get called by the testing framework.babelOptions.filename
is now set tofilepath
by default rather thanundefined
.In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to
undefined
. With this version, the customizer now unsets these properties (sets them toundefined
), allowing the end user to easily unset defaults (e.g.filename
).Minimum recommended node version bumped from 10.13.0 to 14.20.0
Plugin names are once again automatically determined by analyzing the return value of the plugin function. Though this is implemented in a backwards-compatible way, there is a [small caveat]([https://github.com/babel-utils/babel-plugin-tester#pluginname-inference-caveat][24]).
✨ Features
73b90b3
][25])9d1b321
][26])exec
/execFixture
support via Node's VM module ([4754f42
][27])89b58b5
][29])8c8b858
][31])f54deda
][32])13626d1
][33])f9ad903
][35])titleNumbering
andrestartTitleNumbering
options ([09e792d
][36])setup
/teardown
run order ([4ea283f
][37])4c7c6e7
][38])f214995
][39])🪄 Fixes
2acfe37
][40])481be19
][42])fbb6c19
][44])⚙️ Build System
0bdb351
][46])00712c0
][47])5f588e9
][49])d5b4d9c
][50])🧙🏿 Refactored
undefined
([74af680
][51])0c44392
][52])🏗️ Patch babel-plugin-tester[@11.0.4][53] (2023-01-25)
🪄 Fixes
0306698
][54])🏗️ Patch babel-plugin-tester[@11.0.3][55] (2023-01-24)
🪄 Fixes
e9ebcdd
][56])🏗️ Patch babel-plugin-tester[@11.0.2][57] (2023-01-23)
🪄 Fixes
330aa1e
][58])2c4cd84
][59])⚙️ Build System
850d58c
][60])🏗️ Patch babel-plugin-tester[@11.0.1][61] (2023-01-18)
🪄 Fixes
config
option is still supported byprettierFormatter
([e48badf
][62]) see [#139][63]v11.0.0
Compare Source
💥 BREAKING CHANGES 💥
error
no longer accepts arbitrary class constructorserror
(akathrows
) no longer accepts arbitrary class constructors. Any provided class constructor must extendError
, e.g. built-ins likeSyntaxError
or custom error classes likeclass MyError extends Error
. Thanks to the nature of JavaScript, **providing a class constructor that does not extendError
will lead to undefined behavior**.error
only captures exceptions from Babelerror
(akathrows
) no longer potentially captures exceptions thrown by theformatResult
function. If theformatResult
function throws, the entire test will fail immediately.TypeError
for config error;AssertionError
for test errorAll configuration-related issues now throw
TypeError
instead ofAssertionError
.AssertionError
is now exclusively used for failing tests. Additionally, the text of some error messages has been updated.All test titles are now numbered
All test titles are now numbered (e.g.
"1. ..."
,"2. ..."
, etc), including fixtures tests and tests with custom titles.Built-in TypeScript support
TypeScript types are now included within the package itself, obviating the need to install a separate types package. Installing the old types package alongside this version of babel-plugin-tester will cause conflicts.
Fixture configuration schema is standardized
In previous versions of babel-plugin-tester, you could provide any key to
options.json
and it would be passed as-is to the plugin under test. This made it impossible to allow fixtures to be configured with the same flexibility as test objects. In this version of babel-plugin-tester, fixtureoptions.json
(andoptions.js
) files must return a standard set of options. Non-standard properties are silently ignored. For instance: to pass options to the plugin under test, they must be provided viapluginOptions
.Global
describe
andit
functions must be definedBabel-plugin-tester will refuse to run if
describe
,it
,it.only
, orit.skip
are not globally available.Global
setup
/teardown
no longer overwrites local versionsIn previous versions of babel-plugin-tester, test-level
setup
andteardown
functions overrode globalsetup
andteardown
functions. In this version of babel-plugin-tester, the globalsetup
andteardown
functions will be called alongside their test-level counterparts for each test and in a well-defined order (see documentation).Implicit "global" options merging is no longer supported
In previous versions of babel-plugin-tester, any test object and fixture configuration option could be passed directly to babel-plugin-tester and apply "globally" across all test objects and fixtures. This was even the case for options that made no sense in a "global" context, such as
only
,skip
, andcode
. In this version of babel-plugin-tester, only options explicitly listed in the documentation can be passed directly and applied globally. Unrecognized "rest" options are silently ignored.Test/fixture configuration is resolved early and consistently
In previous versions of babel-plugin-tester, test object and fixture configuration options were resolved in various places, with some options getting finalized before
it(...)
anddescribe(...)
were called and others being determined as Jest was executing the test. In this version, all configuration options are resolved and finalized beforeit(...)
anddescribe(...)
are called. This also means configurations are finalized _before_ hooks likebeforeAll
get called by the testing framework.babelOptions.filename
is now set tofilepath
by default rather thanundefined
.In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to
undefined
. With this version, the customizer now unsets these properties (sets them toundefined
), allowing the end user to easily unset defaults (e.g.filename
).Minimum recommended node version bumped from 10.13.0 to 14.20.0
Plugin names are once again automatically determined by analyzing the return value of the plugin function. Though this is implemented in a backwards-compatible way, there is a [small caveat]([https://github.com/babel-utils/babel-plugin-tester#pluginname-inference-caveat][24]).
✨ Features
73b90b3
][25])9d1b321
][26])exec
/execFixture
support via Node's VM module ([4754f42
][27])89b58b5
][29])8c8b858
][31])f54deda
][32])13626d1
][33])f9ad903
][35])titleNumbering
andrestartTitleNumbering
options ([09e792d
][36])setup
/teardown
run order ([4ea283f
][37])4c7c6e7
][38])f214995
][39])🪄 Fixes
2acfe37
][40])481be19
][42])fbb6c19
][44])⚙️ Build System
0bdb351
][46])00712c0
][47])5f588e9
][49])d5b4d9c
][50])🧙🏿 Refactored
undefined
([74af680
][51])0c44392
][52])🏗️ Patch babel-plugin-tester[@11.0.4][53] (2023-01-25)
🪄 Fixes
0306698
][54])🏗️ Patch babel-plugin-tester[@11.0.3][55] (2023-01-24)
🪄 Fixes
e9ebcdd
][56])🏗️ Patch babel-plugin-tester[@11.0.2][57] (2023-01-23)
🪄 Fixes
330aa1e
][58])2c4cd84
][59])⚙️ Build System
850d58c
][60])🏗️ Patch babel-plugin-tester[@11.0.1][61] (2023-01-18)
🪄 Fixes
config
option is still supported byprettierFormatter
([e48badf
][62]) see [#139][63]Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.