From dae09bb0903c9cc3570dacdf28c520eced062692 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 14 Dec 2022 12:33:04 -0500 Subject: [PATCH] *Process native modules before node rewrites --- dist/index.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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(), + ], + }); }