TheDesk Riina (ver.3)

This commit is contained in:
cutls
2018-02-19 02:41:25 +09:00
parent 0ada3a03b0
commit 7a1c6ea17c
997 changed files with 161887 additions and 34 deletions

16
app/node_modules/exif-parser/Makefile generated vendored Normal file
View File

@@ -0,0 +1,16 @@
VERSION=$(shell node --eval "console.log(require('./package.json').version)")
BUNDLE=dist/exif-parser-$(VERSION).js
MIN_BUNDLE=dist/exif-parser-$(VERSION)-min.js
BROWSERIFY=node_modules/.bin/browserify
UGLIFY=node_modules/.bin/uglifyjs
build-browser-bundle: setup
@echo "building $(BUNDLE) ..."
@mkdir -p dist/
@$(BROWSERIFY) --bare browser-global.js -o $(BUNDLE)
@echo "building $(MIN_BUNDLE) ..."
@$(UGLIFY) $(BUNDLE) -o $(MIN_BUNDLE) --compress
setup:
@npm install --no-optional --loglevel error --development
clean:
@rm -rf dist/