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 default preset;
|
||||
export declare const preset: import("rollup").RollupOptions;
|
||||
|
|
|
@ -4,7 +4,7 @@ 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";
|
||||
const preset = defineConfig({
|
||||
export const preset = defineConfig({
|
||||
plugins: [
|
||||
typescript(),
|
||||
json(),
|
||||
|
@ -13,4 +13,3 @@ const preset = defineConfig({
|
|||
bundleNativeModulesPlugin(),
|
||||
],
|
||||
});
|
||||
export default preset;
|
||||
|
|
|
@ -5,7 +5,7 @@ import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-
|
|||
import typescript from "@rollup/plugin-typescript";
|
||||
import json from "@rollup/plugin-json";
|
||||
|
||||
const preset = defineConfig({
|
||||
export const preset = defineConfig({
|
||||
plugins: [
|
||||
typescript(),
|
||||
json(),
|
||||
|
@ -14,5 +14,3 @@ const preset = defineConfig({
|
|||
bundleNativeModulesPlugin(),
|
||||
],
|
||||
});
|
||||
|
||||
export default preset;
|
||||
|
|
Loading…
Reference in New Issue