ability to squash and embed static files

This commit is contained in:
Brad Rydzewski
2015-04-25 16:16:56 -07:00
parent a1f3b2da4d
commit 3b7c9738a3
5 changed files with 41 additions and 8 deletions

View File

@@ -1,9 +1,10 @@
SHA := $(shell git rev-parse --short HEAD)
VERSION := 0.4.0-alpha
all: build
all: concat bindata build
deps:
go get -u github.com/jteeuwen/go-bindata/...
go get -t -v ./...
test:
@@ -16,3 +17,17 @@ build:
clean:
find . -name "*.out" -delete
rm -f drone
rm -f bindata.go
concat:
cat server/static/scripts/drone.js \
server/static/scripts/services/*.js \
server/static/scripts/filters/*.js \
server/static/scripts/controllers/*.js \
server/static/scripts/term.js > server/static/drone.js
bindata_debug:
go-bindata --debug server/static/...
bindata:
go-bindata server/static/...