This commit is contained in:
Lukáš Kaňka
2023-08-15 18:35:50 +02:00
commit ea3e372146
10019 changed files with 2548539 additions and 0 deletions

18
CyLukTs/lukan/node_modules/throttleit/Makefile generated vendored Normal file
View File

@ -0,0 +1,18 @@
build: components index.js
@component build --dev
components: component.json
@component install --dev
clean:
rm -fr build components template.js
test: node_modules
@./node_modules/mocha/bin/mocha \
--reporter spec
node_modules: package.json
@npm install
.PHONY: clean