refactor: moving the generated files to make it easier to include

This commit is contained in:
D. Moonfire 2024-02-24 15:06:38 -06:00
parent d93ff04688
commit aed76b4804
4 changed files with 6 additions and 7 deletions

2
.gitignore vendored
View file

@ -1,7 +1,7 @@
*.tgz
/*.css
.direnv/
dist/
node_modules/
# nixago: ignore-linked-files

View file

@ -8,7 +8,7 @@ format:
prettier src/*.mjs src/*.postcss --write
format-dist:
prettier dist/*.css --write
prettier ./*.css --write
# Generate all the files
build: colors theme
@ -19,5 +19,4 @@ colors: format && format-dist
# Generate dist/theme.css
theme: format && format-dist
mkdir -p dist
postcss src/theme.postcss > dist/theme.css
postcss src/theme.postcss > ./theme.css

View file

@ -1,2 +1,2 @@
@import url("../dist/colors.css");
@import url("../dist/theme.css");
@import url("../colors.css");
@import url("../theme.css");

View file

@ -5,7 +5,7 @@ import fs from "node:fs/promises";
// Figure out where we need to write the files.
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const distPath = __dirname + "/../dist";
const distPath = __dirname + "/..";
console.log("writing", distPath);