From 67a5eddd3122303a5be8e9d50257d0490b6ca267 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 14 Dec 2022 12:33:15 -0500 Subject: [PATCH] *Update dist --- dist/index.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dist/index.js b/dist/index.js index 38b2d40..81b766d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5,13 +5,13 @@ import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native- import typescript from "@rollup/plugin-typescript"; import json from "@rollup/plugin-json"; export default function preset() { - return defineConfig({ - plugins: [ - typescript(), - json(), - bundleNativeModulesPlugin(), - nodeResolve(), - commonjs(), - ], - }); + return defineConfig({ + plugins: [ + typescript(), + json(), + nodeResolve(), + commonjs(), + bundleNativeModulesPlugin(), + ], + }); }