You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add a @deprecated tag to the mswDecorator (#178)
* Add an `@deprecated` JSDoc tag to the mswDecorator.
Previously, this was only communicated to the user via the browser console, and so was easy to miss. I only noticed it because of reading the changelog.
It'll be much more likely for users to notice this deprecation if their editor tells them that it's deprecated, so this will hopefully help ease migration.
* Update packages/msw-addon/src/decorator.ts
Co-authored-by: Artem Zakharchenko <[email protected]>
---------
Co-authored-by: Artem Zakharchenko <[email protected]>
More info: https://github.com/mswjs/msw-storybook-addon/blob/main/MIGRATION.md#mswdecorator-is-deprecated-in-favor-of-mswloader
22
22
`)
23
23
24
+
/**
25
+
* @deprecated The `mswDecorator` is deprecated and will be removed in the next release. Please use the `mswLoader` instead.
26
+
* More info: https://github.com/mswjs/msw-storybook-addon/blob/ec35e9371f8a56a27220838fba798b9001ac7fad/MIGRATION.md#mswdecorator-is-deprecated-in-favor-of-mswloader
0 commit comments