1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
budibase/packages/standard-components/rollup.config.js

21 lines
332 B
JavaScript
Raw Normal View History

2019-08-20 08:18:23 +12:00
import svelte from 'rollup-plugin-svelte';
import resolve from 'rollup-plugin-node-resolve';
export default {
input: 'src/index.js',
output: [
2019-09-22 16:02:33 +12:00
{
file: "dist/index.js",
format: 'esm',
name:"budibaseStandardComponents",
sourcemap: "inline"
}
2019-08-20 08:18:23 +12:00
],
plugins: [
2019-09-26 16:40:58 +12:00
svelte({
hydratable:true
}),
2019-08-20 08:18:23 +12:00
resolve()
]
};