* chore: move icons from ui package to propel package * chore: package and tsdown config updated * chore: migrate all icon imports from @plane/ui to @plane/propel/icons * chore: remove icon components from @plane/ui package (migrated to @plane/propel/icons) * chore: code refactoring * chore: migrate remaining icon components from @Plane/ui to @Plane/propel/icons * fix: lint error * chore: code refactor
26 lines
615 B
TypeScript
26 lines
615 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/switch/index.ts",
|
|
"src/table/index.ts",
|
|
"src/tabs/index.ts",
|
|
"src/tooltip/index.ts",
|
|
"src/utils/index.ts",
|
|
],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
copy: ["src/styles"],
|
|
});
|