From ee2e76ab71d3e673c370b062a7720014b628e589 Mon Sep 17 00:00:00 2001 From: Dan <2939173+trinitroglycerin@users.noreply.github.com> Date: Thu, 31 Aug 2023 09:50:48 -0700 Subject: [PATCH] Remove missing target --- frontend/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/makefile b/frontend/makefile index dd98d6d5..62b92efb 100644 --- a/frontend/makefile +++ b/frontend/makefile @@ -1,5 +1,5 @@ prod_build = ./build/index.html -prod_input = ./src/App.js ./src/actions.js ./src/index.js ./src/stores.js ./src/components/*.jsx +prod_input = ./src/App.tsx ./src/actions.ts ./src/index.tsx ./src/stores.ts ./src/components/*.tsx ifndef RELEASE $(error RELEASE is not set) @@ -20,9 +20,9 @@ endif dev: BROWSER=none HOST=localhost npm start -build: version $(prod_input) +build: $(prod_input) npm install \ - && REACT_APP_VERSION=$$(git rev-parse --short HEAD)-$(RELEASE)' REACT_APP_API_URL=${API_URL} REACT_APP_BINARY_NAME=${BINARY_NAME} REACT_APP_DOCUMENTATION_URL=${REACT_APP_DOCUMENTATION_URL} REACT_APP_CLIENT=webUI npm run-script build \ + && REACT_APP_VERSION='$$(git rev-parse --short HEAD)-$(RELEASE)' REACT_APP_API_URL=${API_URL} REACT_APP_BINARY_NAME=${BINARY_NAME} REACT_APP_DOCUMENTATION_URL=${REACT_APP_DOCUMENTATION_URL} REACT_APP_CLIENT=webUI npm run-script build \ && cp -R build/* ../builds/$(RELEASE)/frontend test: