visual upgrade
ci / build-and-design (push) Failing after 13s

This commit is contained in:
Jason Stedwell
2026-07-23 04:23:19 -05:00
parent 9d7f593307
commit 822d8e41e6
53 changed files with 7757 additions and 285 deletions
Executable → Regular
+17 -5
View File
@@ -1,11 +1,23 @@
import { defineConfig } from "tsup";
import { defineConfig, type Options } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
const shared: Options = {
format: ["esm"],
dts: true,
sourcemap: true,
clean: true,
clean: false,
treeshake: true,
external: ["react", "react-dom", "tailwindcss"],
});
};
export default defineConfig([
{
...shared,
entry: ["src/index.ts"],
outDir: "dist/client",
},
{
...shared,
entry: ["src/tokens-entry.ts"],
outDir: "dist/tokens",
},
]);