1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

bugfix: MD build broken - shortid

This commit is contained in:
Michael Shanks 2020-02-27 22:06:35 +00:00
parent 7caf336240
commit 5eaf7dbe00
2 changed files with 19 additions and 3 deletions

View file

@ -1,6 +1,7 @@
import svelte from "rollup-plugin-svelte"
import postcss from "rollup-plugin-postcss"
import resolve from "rollup-plugin-node-resolve"
import commonjs from "rollup-plugin-commonjs"
const postcssOptions = () => ({
extensions: [".scss", ".sass"],
@ -16,6 +17,10 @@ const postcssOptions = () => ({
],
})
const coreExternal = [
"shortid",
]
export default {
input: "src/index.js",
output: [
@ -30,7 +35,18 @@ export default {
svelte({
hydratable: true,
}),
resolve(),
resolve({
preferBuiltins: true,
browser: true,
dedupe: importee => {
return coreExternal.includes(importee)
},
}),
commonjs({
namedExports: {
shortid: ["generate"],
},
}),
postcss(postcssOptions()),
],
}

View file

@ -3,7 +3,7 @@
import { Radiobutton } from "../Radiobutton"
import { Checkbox } from "../Checkbox"
import ClassBuilder from "../ClassBuilder.js"
import shortid from "shortid"
import { generate } from "shortid"
const cb = new ClassBuilder("list-item")
@ -28,7 +28,7 @@
let role = "option"
onMount(() => {
_id = shortid.generate()
_id = generate()
selectedItems = _bb.getContext("BBMD:list:selectItemStore")