add build output

This commit is contained in:
Johannes Kirschbauer
2023-10-03 15:02:47 +02:00
parent e9f3be0056
commit 7eed3d9aa9
2 changed files with 1509 additions and 2 deletions

1507
pkgs/theme/src/colors.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
import { writeFile } from "fs"; import { writeFile } from "fs";
import palette from "./out.json" assert { type: "json" }; import palette from "./colors.json" assert { type: "json" };
import { config } from "./config.js"; import { config } from "./config.js";
type PaletteFile = typeof palette; type PaletteFile = typeof palette;
@@ -33,7 +33,7 @@ const html = (palette: PaletteFile): string => {
${colors.join("\n")} ${colors.join("\n")}
</body> </body>
</html> </html>
`; `;
}; };