makefile: install esbuild.

master
Philippe Pittoli 2024-01-23 03:56:19 +01:00
parent 6f6c1b3836
commit bfbe31249f
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,9 @@ all: build
build:
spago build
bundle-module:
PATH=./node_modules/.bin:$$PATH spago bundle-module
run:
spago run
@ -18,3 +21,7 @@ DOCS_HTTPD_PORT ?= 30000
DOCS_DIR ?= generated-docs/html
serve-docs: docs
darkhttpd $(DOCS_DIR) --addr $(DOCS_HTTPD_ADDR) --port $(DOCS_HTTPD_PORT) --log $(DOCS_HTTPD_ACCESS_LOGS)
install-esbuild:
@echo "install ebbuild"
[ -f node_modules/.bin/esbuild ] || npm install esbuild