pleshevski.ru/Makefile

15 lines
114 B
Makefile
Raw Normal View History

2024-07-24 17:15:05 +03:00
NPM ?= npm
2023-03-15 15:44:18 +03:00
2024-07-24 17:15:05 +03:00
help:
cat makefile
2023-03-15 15:44:18 +03:00
2024-07-24 17:15:05 +03:00
build:
$(NPM) run docs:build
2023-03-15 15:44:18 +03:00
2024-07-24 17:15:05 +03:00
dev:
$(NPM) run docs:dev
deps:
$(NPM) install
2023-03-15 15:44:18 +03:00