2025-03-20 16:08:35 -04:00
|
|
|
.PHONY: all
|
|
|
|
|
all: install build check
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# INSTALL
|
|
|
|
|
|
|
|
|
|
WASM_PACK ?= ~/.cargo/bin/wasm-pack
|
|
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
|
install: node_modules/.yarn-integrity $(WASM_PACK) ## Install dependencies
|
|
|
|
|
|
|
|
|
|
node_modules/.yarn-integrity: package.json yarn.lock
|
|
|
|
|
yarn install
|
|
|
|
|
@ touch $@
|
|
|
|
|
|
|
|
|
|
$(WASM_PACK):
|
|
|
|
|
yarn install:rust
|
|
|
|
|
yarn install:wasm-pack:sh
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# BUILD
|
2024-06-04 08:32:24 -04:00
|
|
|
|
2025-03-20 18:14:39 -04:00
|
|
|
RUST_SOURCES := $(wildcard rust/*) $(wildcard rust/**/*)
|
|
|
|
|
TYPESCRIPT_SOURCES := $(wildcard src/**/*.tsx) $(wildcard src/**/*.ts)
|
2024-06-04 08:32:24 -04:00
|
|
|
|
2025-03-20 16:08:35 -04:00
|
|
|
.PHONY: build
|
|
|
|
|
build: build-web build-desktop
|
|
|
|
|
|
|
|
|
|
.PHONY: build-web
|
2025-03-20 18:14:39 -04:00
|
|
|
build-web: public/kcl_wasm_lib_bg.wasm build/index.html
|
2025-03-20 16:08:35 -04:00
|
|
|
|
|
|
|
|
.PHONY: build-desktop
|
2025-03-20 18:14:39 -04:00
|
|
|
build-desktop: public/kcl_wasm_lib_bg.wasm .vite/build/main.js
|
2025-03-20 16:08:35 -04:00
|
|
|
|
2025-03-20 18:14:39 -04:00
|
|
|
public/kcl_wasm_lib_bg.wasm: $(RUST_SOURCES)
|
2025-03-20 16:08:35 -04:00
|
|
|
yarn build:wasm
|
|
|
|
|
|
2025-03-20 18:14:39 -04:00
|
|
|
build/index.html: $(TYPESCRIPT_SOURCES)
|
2025-03-20 16:08:35 -04:00
|
|
|
yarn build:local
|
|
|
|
|
|
2025-03-20 18:14:39 -04:00
|
|
|
.vite/build/main.js: $(TYPESCRIPT_SOURCES)
|
2025-03-20 16:08:35 -04:00
|
|
|
yarn tronb:vite:dev
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# CHECK
|
|
|
|
|
|
|
|
|
|
.PHONY: check
|
|
|
|
|
check: format lint
|
|
|
|
|
|
|
|
|
|
.PHONY: format
|
|
|
|
|
format: install ## Format the code
|
|
|
|
|
yarn fmt
|
|
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
|
lint: install ## Lint the code
|
2025-03-20 23:52:30 -04:00
|
|
|
yarn tsc
|
2025-03-20 16:08:35 -04:00
|
|
|
yarn lint
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# RUN
|
|
|
|
|
|
|
|
|
|
.PHONY: run
|
|
|
|
|
run: run-web
|
|
|
|
|
|
|
|
|
|
.PHONY: run-web
|
|
|
|
|
run-web: install build-web ## Start the web app
|
2024-06-04 08:32:24 -04:00
|
|
|
yarn start
|
|
|
|
|
|
2025-03-20 16:08:35 -04:00
|
|
|
.PHONY: run-desktop
|
|
|
|
|
run-desktop: install build-desktop ## Start the desktop app
|
|
|
|
|
yarn tron:start
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# TEST
|
|
|
|
|
|
|
|
|
|
GREP ?= ""
|
|
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
|
test: test-unit test-e2e
|
|
|
|
|
|
|
|
|
|
.PHONY: test-unit
|
|
|
|
|
test-unit: install ## Run the unit tests
|
|
|
|
|
@ nc -z localhost 3000 || ( echo "Error: localhost:3000 not available, 'make run-web' first" && exit 1 )
|
|
|
|
|
yarn test:unit
|
|
|
|
|
|
|
|
|
|
.PHONY: test-e2e
|
|
|
|
|
test-e2e: install build-desktop ## Run the e2e tests
|
|
|
|
|
yarn test:playwright:electron --workers=1 --grep=$(GREP)
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# CLEAN
|
|
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
|
clean: ## Delete all artifacts
|
|
|
|
|
rm -rf .vite/ build/
|
|
|
|
|
rm -rf trace.zip playwright-report/ test-results/
|
|
|
|
|
rm -rf public/kcl_wasm_lib_bg.wasm
|
|
|
|
|
rm -rf rust/*/bindings/ rust/*/pkg/ rust/target/
|
|
|
|
|
rm -rf node_modules/ rust/*/node_modules/
|
|
|
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
|
help: install
|
|
|
|
|
@ grep -E '^[^[:space:]]+:.*## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
|
|
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
2024-09-04 08:35:40 -04:00
|
|
|
# I'm sorry this is so specific to my setup you may as well ignore this.
|
|
|
|
|
# This is so you don't have to deal with electron windows popping up constantly.
|
|
|
|
|
# It should work for you other Linux users.
|
|
|
|
|
lee-electron-test:
|
|
|
|
|
Xephyr -br -ac -noreset -screen 1200x500 :2 &
|
|
|
|
|
DISPLAY=:2 NODE_ENV=development PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:4444/ yarn tron:test -g "when using the file tree"
|
|
|
|
|
killall Xephyr
|