Compare commits

..

No commits in common. "09e55ea36ffae36c4c9353479d419ecfa0031569" and "b32073e35c9f0340de45308f060ee347a316dd2f" have entirely different histories.

2 changed files with 13 additions and 13 deletions

2
dist/index.js vendored
View File

@ -13,4 +13,4 @@ const preset = defineConfig({
bundleNativeModulesPlugin(), bundleNativeModulesPlugin(),
], ],
}); });
export default ; export default preset;

View File

@ -1,12 +1,11 @@
import { defineConfig, RollupOptions } from "rollup"; import { defineConfig } from "rollup";
import commonjs from "@rollup/plugin-commonjs"; import commonjs from "@rollup/plugin-commonjs";
import { nodeResolve } from "@rollup/plugin-node-resolve"; import { nodeResolve } from "@rollup/plugin-node-resolve";
import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules"; import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules";
import typescript from "@rollup/plugin-typescript"; import typescript from "@rollup/plugin-typescript";
import json from "@rollup/plugin-json"; import json from "@rollup/plugin-json";
export default function preset(): RollupOptions { const preset = defineConfig({
return defineConfig({
plugins: [ plugins: [
typescript(), typescript(),
json(), json(),
@ -14,5 +13,6 @@ export default function preset(): RollupOptions {
commonjs(), commonjs(),
bundleNativeModulesPlugin(), bundleNativeModulesPlugin(),
], ],
}); });
}
export default preset;