UNPKG

@zeytal/grid

Version:

Small layout grid utility. Align everything perfectly. Simplify your responsive design coding process without sacrificing effectiveness. Hit G on your keyboard to toggle your grid on and off.

15 lines (13 loc) 273 B
import { defineConfig } from "tsup"; export default defineConfig([ { entry: ["src/index.tsx"], format: ["esm", "cjs"], external: ["react", "react-dom"], dts: true, sourcemap: true, clean: true, outDir: "dist", injectStyle: true, }, ]);