Migrate whynot-design npm catalog and docs to Forgejo registry
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 3s

Update catalog, docs, tests, and exec_delivery comment for Forgejo npm API.
This commit is contained in:
tegwick 2026-07-09 11:38:15 +02:00
parent ff0dc8aeb2
commit 0ab9c649b9
7 changed files with 10 additions and 10 deletions

View file

@ -92,7 +92,7 @@ def _npm_userconfig(registry: str, scope: str, token_env: str) -> Iterator[Path]
os.fchmod(fd, 0o600)
authkey = _registry_authkey(registry)
with os.fdopen(fd, "w") as fh:
# e.g. @whynot:registry=https://gitea.coulomb.social/api/packages/coulomb/npm/
# e.g. @whynot:registry=https://forgejo.coulomb.social/api/packages/coulomb/npm/
fh.write(f"{scope}:registry={registry}\n")
fh.write(f"{authkey}:_authToken=${{{token_env}}}\n")
yield path