17 lines
240 B
Makefile
17 lines
240 B
Makefile
# Prism — Build tasks
|
|
# See https://just.systems
|
|
|
|
default: build
|
|
|
|
# Build the project
|
|
build:
|
|
@echo "TODO: implement build"
|
|
|
|
# Run linter / typecheck
|
|
lint:
|
|
@echo "TODO: implement linter"
|
|
|
|
# Run tests
|
|
test:
|
|
@echo "TODO: implement tests"
|