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