first commit

This commit is contained in:
aschwarz
2023-03-14 14:47:50 +01:00
commit 062b2dfae8
4752 changed files with 505842 additions and 0 deletions

21
bootstrap/node_modules/move-js/Makefile generated vendored Normal file
View File

@ -0,0 +1,21 @@
UGLIFY_FLAGS = --no-mangle
build: move.min.js components index.js
@component build --dev
components: component.json
@component install --dev
move.js: components
@component build --standalone move --name move --out .
move.min.js: move.js
@uglifyjs $(UGLIFY_FLAGS) $< > $@ \
&& du -h move.js \
&& du -h move.min.js
clean:
rm -rf build move.js components move.min.js
.PHONY: clean