mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
17 lines
174 B
Makefile
17 lines
174 B
Makefile
PACKAGE_MANAGER = pnpm
|
|
NVM = nvm
|
|
DENO = deno
|
|
|
|
all: build
|
|
|
|
nvm:
|
|
. ${NVM_DIR}/nvm.sh && nvm use && $(CMD)
|
|
|
|
deps:
|
|
deno i
|
|
|
|
build:
|
|
deno i && deno task build-local
|
|
|
|
.PHONY: all
|