* ✨ feat: add Skeleton component with respective stories in propel * 🚨 fix: lint issues * ♻️ refactor : enhance Skeleton component with improved props and structure * ✨ feat: add Skeleton component entry to package.json * 🚨 fix: lint * ♻️ refactor: rename Skeleton to skeleton * fix: rename fixes * ♻️ refactor: rename skeleton * 🚨 fix: lint * ♻️ refactor: add skeleton entry to tsdown config and package.json * ♻️ refactor: sorted propel exports --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
27 lines
644 B
TypeScript
27 lines
644 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/skeleton/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"],
|
|
});
|