-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (31 loc) · 941 Bytes
/
Makefile
File metadata and controls
40 lines (31 loc) · 941 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
35
36
37
38
39
40
.PHONY: help dev-up dev-down install build test lint type-check clean
help:
@echo "PolyNote Development Commands"
@echo "============================="
@echo "make install - Install all dependencies"
@echo "make dev-up - Start development environment"
@echo "make dev-down - Stop development environment"
@echo "make build - Build all packages"
@echo "make test - Run all tests"
@echo "make lint - Lint code"
@echo "make type-check - Run TypeScript type checking"
@echo "make clean - Clean build artifacts"
install:
npm install
dev-up:
@echo "Starting PolyNote development environment..."
npm run dev
dev-down:
@echo "Stopping development environment..."
pkill -f "npm run dev" || true
build:
npm run build
test:
npm test
lint:
npm run lint
type-check:
npm run type-check
clean:
npm run clean
rm -rf node_modules packages/*/node_modules apps/*/node_modules