1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00
budibase/packages/bootstrap-components/rollup.config.js

21 lines
363 B
JavaScript
Raw Normal View History

import svelte from "rollup-plugin-svelte"
import resolve from "rollup-plugin-node-resolve"
2019-10-14 20:32:20 +13:00
export default {
input: "src/index.js",
output: [
{
file: "dist/index.js",
format: "esm",
name: "budibaseStandardComponents",
sourcemap: "inline",
},
],
plugins: [
svelte({
hydratable: true,
}),
resolve(),
],
}