From 921918f1fb21a34b3d9524c579e80589fde828ad Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 14 Dec 2022 10:03:43 -0500 Subject: [PATCH] *Dont do default export --- src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 5895edb..d8d1f6e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native- import typescript from "@rollup/plugin-typescript"; import json from "@rollup/plugin-json"; -const preset = defineConfig({ +export const preset = defineConfig({ plugins: [ typescript(), json(), @@ -14,5 +14,3 @@ const preset = defineConfig({ bundleNativeModulesPlugin(), ], }); - -export default preset;