From 6cc3977284ae1db22dba82f7871a2cbefb5fc7f4 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 14 Dec 2022 10:07:37 -0500 Subject: [PATCH] *Update dist --- dist/index.d.ts | 3 ++- dist/index.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index 65d93cc..b8c996d 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1 +1,2 @@ -export declare const preset: import("rollup").RollupOptions; +declare const preset: import("rollup").RollupOptions; +export default preset; diff --git a/dist/index.js b/dist/index.js index 0527889..01393bb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4,7 +4,7 @@ import { nodeResolve } from "@rollup/plugin-node-resolve"; import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules"; import typescript from "@rollup/plugin-typescript"; import json from "@rollup/plugin-json"; -export const preset = defineConfig({ +const preset = defineConfig({ plugins: [ typescript(), json(), @@ -13,3 +13,4 @@ export const preset = defineConfig({ bundleNativeModulesPlugin(), ], }); +export default preset;