From 2d43b44ac0a042920a8547d16e9a8dc2d8488586 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Mon, 3 Jun 2024 22:32:55 -0500 Subject: [PATCH] fix client bundling --- client/Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/client/Makefile b/client/Makefile index 118f900..e63cdf5 100644 --- a/client/Makefile +++ b/client/Makefile @@ -22,7 +22,7 @@ docs-local: build: deps yarn tsc -# cp -v src/components/main.css out/src/components/ + cp -v src/main.css out/src/ build-shebang: build sed -i '1s;^;#! /usr/bin/env node\n\n;g' $(shell pwd)/out/src/main.js @@ -32,12 +32,6 @@ bundle: build node esbuild.js # copy other files into output to make a complete UI cp -v src/index.html out/ -# cp -v src/config.json out/ -# copy everything into the server's default path -# cp -v src/index.html ../api/gui/ -# cp -v src/config.json ../api/gui/ -# cp -v out/bundle/main.css ../api/gui/bundle/ -# cp -v out/bundle/main.js ../api/gui/bundle/ COVER_OPTS := --all \ --exclude ".eslintrc.js" \