move copy button to right, don't uncss when DEBUG=on

keep unused css when DEBUG=on by skipping the uncss step.
mautrix
Harvey Tindall 3 years ago
parent 21125033ff
commit 9950c158a1
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -45,11 +45,13 @@ ifeq ($(DEBUG), on)
TYPECHECK := tsc -noEmit --project ts/tsconfig.json TYPECHECK := tsc -noEmit --project ts/tsconfig.json
# jank # jank
COPYTS := rm -r $(DATA)/web/js/ts; cp -r ts $(DATA)/web/js COPYTS := rm -r $(DATA)/web/js/ts; cp -r ts $(DATA)/web/js
UNCSS := cp $(DATA)/web/css/bundle.css $(DATA)/bundle.css
else else
LDFLAGS := -s -w $(LDFLAGS) LDFLAGS := -s -w $(LDFLAGS)
SOURCEMAP := SOURCEMAP :=
COPYTS := COPYTS :=
TYPECHECK := TYPECHECK :=
UNCSS := npx uncss $(DATA)/crash.html --csspath web/css --output $(DATA)/bundle.css
endif endif
RACE ?= off RACE ?= off
@ -111,7 +113,7 @@ bundle-css:
inline: inline:
cp html/crash.html $(DATA)/crash.html cp html/crash.html $(DATA)/crash.html
npx uncss $(DATA)/crash.html --csspath web/css --output $(DATA)/bundle.css $(UNCSS)
npx inline-source --root $(DATA) $(DATA)/crash.html $(DATA)/crash.html npx inline-source --root $(DATA) $(DATA)/crash.html $(DATA)/crash.html
rm $(DATA)/bundle.css rm $(DATA)/bundle.css

@ -20,8 +20,10 @@
<a class="button ~critical mb-1" target="_blank" href="https://github.com/hrfee/jfa-go/issues/new/choose">Create an Issue</a> <a class="button ~critical mb-1" target="_blank" href="https://github.com/hrfee/jfa-go/issues/new/choose">Create an Issue</a>
</section> </section>
<section class="section ~neutral !low"> <section class="section ~neutral !low">
<span class="subheading">Full Log</span> <div class="flex-expand">
<span class="button ~urge ml-half" id="copy-log">Copy</span> <span class="subheading">Full Log</span>
<span class="button ~urge ml-half" id="copy-log">Copy</span>
</div>
<div class="row mb-1"> <div class="row mb-1">
<label class="col mr-1"> <label class="col mr-1">
<span class="button ~neutral !high supra full-width center" id="button-log-normal">Normal</span> <span class="button ~neutral !high supra full-width center" id="button-log-normal">Normal</span>

Loading…
Cancel
Save