Compare commits
No commits in common. "6cc3977284ae1db22dba82f7871a2cbefb5fc7f4" and "3f1d337289e3a48401d063bed8230cfdfec46662" have entirely different histories.
6cc3977284
...
3f1d337289
|
@ -1,2 +1 @@
|
||||||
declare const preset: import("rollup").RollupOptions;
|
export declare const preset: import("rollup").RollupOptions;
|
||||||
export default preset;
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ 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";
|
||||||
const preset = defineConfig({
|
export const preset = defineConfig({
|
||||||
plugins: [
|
plugins: [
|
||||||
typescript(),
|
typescript(),
|
||||||
json(),
|
json(),
|
||||||
|
@ -13,4 +13,3 @@ const preset = defineConfig({
|
||||||
bundleNativeModulesPlugin(),
|
bundleNativeModulesPlugin(),
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
export default preset;
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-
|
||||||
import typescript from "@rollup/plugin-typescript";
|
import typescript from "@rollup/plugin-typescript";
|
||||||
import json from "@rollup/plugin-json";
|
import json from "@rollup/plugin-json";
|
||||||
|
|
||||||
const preset = defineConfig({
|
export const preset = defineConfig({
|
||||||
plugins: [
|
plugins: [
|
||||||
typescript(),
|
typescript(),
|
||||||
json(),
|
json(),
|
||||||
|
@ -14,5 +14,3 @@ const preset = defineConfig({
|
||||||
bundleNativeModulesPlugin(),
|
bundleNativeModulesPlugin(),
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default preset;
|
|
||||||
|
|
Loading…
Reference in New Issue