From 8b954f6f83bc1d5dd11446b34af5e3690ca335eb Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 3 Oct 2023 09:24:29 +0200 Subject: [PATCH] ref(utils): Deprecate `walk` method This was supposed to be removed in v7, but was forgotten. --- packages/utils/src/normalize.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/utils/src/normalize.ts b/packages/utils/src/normalize.ts index 7c1adaa32ccc..5445cc33ba58 100644 --- a/packages/utils/src/normalize.ts +++ b/packages/utils/src/normalize.ts @@ -169,7 +169,9 @@ function visit( return normalized; } -// TODO remove this in v7 (this means the method will no longer be exported, under any name) +/** + * @deprecated This export will be removed in v8. + */ export { visit as walk }; /* eslint-disable complexity */