1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Added rollupgenerators to md to keep builder happy

This commit is contained in:
Conor Mack 2020-01-27 13:10:16 +00:00
parent 29153c4eb8
commit 43b77a2572
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import resolve from "rollup-plugin-node-resolve";
export default {
input: "src/generators.js",
output: [
{
file: "dist/generators.js",
format: "esm",
name: "budibaseStandardComponents",
sourcemap: "inline"
}
],
plugins: [resolve()]
};