Files
tfhe-rs/tfhe/web_wasm_unsafe_coop_tests/Makefile
2025-12-29 16:51:08 +01:00

16 lines
271 B
Makefile

.PHONY: run_server # Build and run Node server
run_server:
npm install
npm run build
npm run server
.PHONY: fmt # Format Javascript code
fmt:
npm install
npm run format
.PHONY: check_fmt # Check Javascript code format
check_fmt:
npm install
npm run check-format