Added game info bar

This commit is contained in:
clerie
2018-04-04 12:31:55 +02:00
parent 811ecfddfb
commit 95741499fd
271 changed files with 46086 additions and 2 deletions

17
node_modules/to-iso-string/Makefile generated vendored Normal file
View File

@@ -0,0 +1,17 @@
build: components node_modules
@component build --dev
clean:
@rm -rf components build node_modules
components: component.json
@component install --dev
node_modules: package.json
@npm install
test: build
@./node_modules/.bin/mocha --reporter spec
.PHONY: clean test