23 lines
237 B
Makefile
23 lines
237 B
Makefile
set shell := ["bash", "-eu", "-o", "pipefail", "-c"]
|
|
|
|
default:
|
|
@just --list
|
|
|
|
install:
|
|
npm install
|
|
|
|
dev:
|
|
npm run dev
|
|
|
|
build:
|
|
npm run build
|
|
|
|
start:
|
|
npm run start
|
|
|
|
lint:
|
|
npm run lint
|
|
|
|
deploy:
|
|
bash scripts/deploy.sh
|