From 2ec4328225b2e318417952697ad053a94ab8302c Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 14 Dec 2022 10:07:25 -0500 Subject: [PATCH] Revert "*Dont do default export" This reverts commit 921918f1fb21a34b3d9524c579e80589fde828ad. --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d8d1f6e..5895edb 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"; -export const preset = defineConfig({ +const preset = defineConfig({ plugins: [ typescript(), json(), @@ -14,3 +14,5 @@ export const preset = defineConfig({ bundleNativeModulesPlugin(), ], }); + +export default preset;