Skip to content

Commit

Permalink
refactor(rollup): include icons directory in entry points
Browse files Browse the repository at this point in the history
  • Loading branch information
SutuSebastian committed Jan 20, 2025
1 parent 30e53e7 commit 9e59863
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { rollupPluginUseClient } from "rollup-plugin-use-client";
import packageJson from "./package.json";

const componentEntries = await Array.fromAsync(new Glob("src/components/**/index.ts").scan());
const entries = ["src/index.ts", "src/tailwind/index.ts", ...componentEntries];
const entries = ["src/index.ts", "src/icons/index.ts", "src/tailwind/index.ts", ...componentEntries];
const external = [
"react/jsx-runtime",
"tailwindcss/plugin",
Expand Down
File renamed without changes.

0 comments on commit 9e59863

Please sign in to comment.