summaryrefslogtreecommitdiff
path: root/util/jsgen.pl
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-01-17 10:49:57 +0100
committerYorhel <git@yorhel.nl>2021-01-17 14:01:47 +0100
commit692ef20253a202d4eeb04d4a6491669dc6c30cb5 (patch)
tree6c55208710bdb0b422da090fa722768b42b39f64 /util/jsgen.pl
parentc940802c172654efa6669cf2ff3161c8588f15b0 (diff)
Use SASS for CSS + static asset reoganization
Had been planning to use a more powerful preprocessor for CSS for a while, so that I can also reorganize and clean up the CSS a bit. The cleanup will come later, this is the first step to reorganize the build system a bit and remove skingen.pl. I moved all generated static assets to static/g/ (for _g_enerated), including icons.png and js files. This simplifies management of static/f/ and static/s/, which are fully in git. Skins are now defined as sass files in css/skins/ with their images in static/s/ using plain directory structure.
Diffstat (limited to 'util/jsgen.pl')
-rwxr-xr-xutil/jsgen.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/jsgen.pl b/util/jsgen.pl
index 84a5c8f1..a4023ff8 100755
--- a/util/jsgen.pl
+++ b/util/jsgen.pl
@@ -59,4 +59,4 @@ sub save {
my $js = readjs;
$js =~ s{/\*VARS\*/}{vars()}eg;
-save "$ROOT/static/f/vndb.js", $js;
+save "$ROOT/static/g/vndb.js", $js;