first commit

This commit is contained in:
2026-05-03 16:55:22 +05:30
commit d3bb4199e1
12081 changed files with 662460 additions and 0 deletions

18
server/node_modules/retry/Makefile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
SHELL := /bin/bash
release-major: test
npm version major -m "Release %s"
git push
npm publish
release-minor: test
npm version minor -m "Release %s"
git push
npm publish
release-patch: test
npm version patch -m "Release %s"
git push
npm publish
.PHONY: test release-major release-minor release-patch