From 511eb36fa7df5aa29a669e66f7945d5a1a069cda Mon Sep 17 00:00:00 2001 From: Colum Ferry Date: Fri, 1 Mar 2024 13:34:29 +0000 Subject: [PATCH] fix(remix): ensure component-testing is exported correctly #22091 (#22095) --- packages/remix/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/remix/package.json b/packages/remix/package.json index 8ba776f71c..c5313086fc 100644 --- a/packages/remix/package.json +++ b/packages/remix/package.json @@ -40,6 +40,7 @@ }, "exports": { ".": "./index.js", - "./plugin": "./plugin.js" + "./plugin": "./plugin.js", + "./plugins/component-testing": "./plugins/component-testing/index.js" } }