* * chore: migrated toast to base ui toast * chore: added toast to propel package * fix: lint errors * fix: export path * fix: lint errors * chore: imporoved props handling * fix: lint errors * chore: updated import paths * chore: replaced clsx with cn * * chore: updated tsdown config * chore: updated exports order
29 lines
701 B
TypeScript
29 lines
701 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
"src/accordion/index.ts",
|
|
"src/avatar/index.ts",
|
|
"src/card/index.ts",
|
|
"src/charts/*/index.ts",
|
|
"src/combobox/index.ts",
|
|
"src/command/index.ts",
|
|
"src/dialog/index.ts",
|
|
"src/emoji-icon-picker/index.ts",
|
|
"src/icons/index.ts",
|
|
"src/menu/index.ts",
|
|
"src/popover/index.ts",
|
|
"src/scrollarea/index.ts",
|
|
"src/skeleton/index.ts",
|
|
"src/switch/index.ts",
|
|
"src/table/index.ts",
|
|
"src/tabs/index.ts",
|
|
"src/toast/index.ts",
|
|
"src/tooltip/index.ts",
|
|
"src/utils/index.ts",
|
|
],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
copy: ["src/styles"],
|
|
});
|