12 lines
148 B
Makefile
12 lines
148 B
Makefile
all: install
|
|
bundle exec middleman server
|
|
|
|
install:
|
|
bundle install
|
|
|
|
build:
|
|
npm install
|
|
rm -rf build
|
|
bundle exec middleman build
|
|
|
|
.PHONY: build
|