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(),
],
});
export default ;
export default preset;

View File

@ -1,18 +1,18 @@
import { defineConfig, RollupOptions } from "rollup";
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";
import typescript from "@rollup/plugin-typescript";
import json from "@rollup/plugin-json";
export default function preset(): RollupOptions {
return defineConfig({
plugins: [
typescript(),
json(),
nodeResolve(),
commonjs(),
bundleNativeModulesPlugin(),
],
});
}
const preset = defineConfig({
plugins: [
typescript(),
json(),
nodeResolve(),
commonjs(),
bundleNativeModulesPlugin(),
],
});
export default preset;