diff --git a/dist/index.js b/dist/index.js index 81b766d..38b2d40 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(), - nodeResolve(), - commonjs(), - bundleNativeModulesPlugin(), - ], - }); + return defineConfig({ + plugins: [ + typescript(), + json(), + bundleNativeModulesPlugin(), + nodeResolve(), + commonjs(), + ], + }); }