move _vars to outer ts folder

First step in sharing styling with graphs + future .html files
This commit is contained in:
Damien Elmes 2020-08-27 14:47:03 +10:00
parent 73cffc7cee
commit ab32623dde
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import json
colors = {} colors = {}
for line in open("ts/scss/_vars.scss"): for line in open("../ts/src/scss/_vars.scss"):
line = line.strip() line = line.strip()
if not line: if not line:
continue continue

View file

@ -23,7 +23,7 @@ all: check
PHONY: build PHONY: build
build: build:
$(BIN)/tsc --build $(BIN)/tsc --build
$(BIN)/sass --no-source-map scss:css $(BIN)/sass --no-source-map -I ../../ts/src/scss scss:css
rsync -a css/ ../aqt_data/web/ rsync -a css/ ../aqt_data/web/
.PHONY: check .PHONY: check