From 290ecadb3079bebeae814a4ed515d0c946b7eef9 Mon Sep 17 00:00:00 2001 From: alexandre Date: Tue, 22 Aug 2023 11:19:51 +0200 Subject: [PATCH 1/2] [charts] Fix import issue --- packages/x-charts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index f499086936b2..99b414306cd4 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -75,7 +75,7 @@ "./*": { "types": "./*/index.d.ts", "require": "./*", - "import": "./esm/*" + "import": "./esm/*/index.js" } }, "setupFiles": [ From 16b605fe8004b2d20b89030995371e9a462c5c11 Mon Sep 17 00:00:00 2001 From: Alexandre Fauquette <45398769+alexfauquette@users.noreply.github.com> Date: Tue, 22 Aug 2023 12:16:40 +0200 Subject: [PATCH 2/2] Update packages/x-charts/package.json Co-authored-by: Jan Potoms <2109932+Janpot@users.noreply.github.com> Signed-off-by: Alexandre Fauquette <45398769+alexfauquette@users.noreply.github.com> --- packages/x-charts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index 99b414306cd4..ed18954fb78a 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -74,7 +74,7 @@ }, "./*": { "types": "./*/index.d.ts", - "require": "./*", + "require": "./*/index.js", "import": "./esm/*/index.js" } },