From 05946f4c2bf2d6a5f26520a625c0603ca68b592e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?La=C3=ADs=20Fray=20Ribeiro?= Date: Thu, 22 Aug 2024 17:01:58 -0300 Subject: [PATCH] build(ts-table): fix the shoreline package dependency version to be greater or equal to 1.x Before the peer dependency to vtex/shoreline as fixed in the 1.x major, generating warnings when the user uses the latest versions of the packages. Now, the user can use `>=1`, withous warnings fix #1826 --- packages/ts-table/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ts-table/package.json b/packages/ts-table/package.json index f25e6cec6f..24aff18c5c 100644 --- a/packages/ts-table/package.json +++ b/packages/ts-table/package.json @@ -37,7 +37,7 @@ }, "peerDependencies": { "@tanstack/react-table": ">=8", - "@vtex/shoreline": "0.x", + "@vtex/shoreline": ">= 1", "react": ">=18", "react-dom": ">=18" },