From f60d53f7e1794e578e9b78f7f56548caed3f8a9b Mon Sep 17 00:00:00 2001 From: Mark Lawlor Date: Mon, 1 Sep 2025 14:51:41 +1000 Subject: [PATCH] fix: react-native-css/babel default export --- src/babel/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/babel/index.ts b/src/babel/index.ts index f3ac62d..c3e290f 100644 --- a/src/babel/index.ts +++ b/src/babel/index.ts @@ -1,9 +1,9 @@ /* eslint-disable */ -module.exports = function () { +export default function () { return { plugins: [ require("./import-plugin").default, "react-native-worklets/plugin", ], }; -}; +}