Firebase Update

This commit is contained in:
Lukas Nowy
2018-12-22 23:30:39 +01:00
parent befb44764d
commit acffe619b3
11523 changed files with 1614327 additions and 930246 deletions

17
express-server/node_modules/is/Makefile generated vendored Normal file
View File

@ -0,0 +1,17 @@
.PHONY: verify-tag release
default: release
verify-tag:
ifndef TAG
$(error TAG is undefined)
endif
release: verify-tag
@ OLD_TAG=`git describe --abbrev=0 --tags` && \
npm run minify && \
replace "$${OLD_TAG/v/}" "$(TAG)" -- *.json README.md && \
git commit -m "v$(TAG)" *.js *.json README.md && \
git tag "v$(TAG)"