forked from joshuayoes/ios-simulator-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (26 loc) · 725 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (26 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.PHONY: help build install uninstall test clean deps watch
help:
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo " build Compile TypeScript to build/"
@echo " install Build and install globally (npm install -g .)"
@echo " uninstall Remove global install"
@echo " deps Install npm dependencies"
@echo " test Run scripts/test-all.sh"
@echo " watch Rebuild on file changes"
@echo " clean Remove build output and node_modules"
deps:
npm install
build: deps
npm run build
install: build
npm install -g .
uninstall:
npm uninstall -g @debugswift/ios-simulator-cli || true
test: build
bash scripts/test-all.sh
watch:
npm run watch
clean:
rm -rf build node_modules