From 2cda57ae28bc8ae841125059196ebd28962ddd11 Mon Sep 17 00:00:00 2001 From: "Jordan L. Wright" <47576172+interfaceconjurer@users.noreply.github.com> Date: Sat, 11 Jan 2025 22:31:31 -0500 Subject: [PATCH] update name of generated seti colors css file --- seti-icons/scripts/generate-css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seti-icons/scripts/generate-css.js b/seti-icons/scripts/generate-css.js index 6c50533..d0c69fd 100644 --- a/seti-icons/scripts/generate-css.js +++ b/seti-icons/scripts/generate-css.js @@ -4,7 +4,7 @@ const Handlebars = require('handlebars'); const colorsFilePath = path.join(__dirname, '../src/template/colors.json'); const templateFilePath = path.join(__dirname, '../src/template/styles-colors.hbs'); -const outputFilePath = path.join(__dirname, '../dist/colors.css'); +const outputFilePath = path.join(__dirname, '../dist/seti-colors.css'); const colors = JSON.parse(fs.readFileSync(colorsFilePath, 'utf8'));