更新版本号至 0.0.6,并注释掉请求 URL 的日志输出

This commit is contained in:
2026-02-19 20:53:51 +08:00
parent ad85d8fdbe
commit 7428ea60b0
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@kevisual/gitea",
"version": "0.0.5",
"version": "0.0.6",
"description": "",
"scripts": {
"build": "bun run bun.config.ts"

View File

@@ -64,7 +64,7 @@ export class GiteaCore {
if (!_headers.Authorization) {
delete _headers.Authorization;
}
console.log('Request URL:', url, data, _headers);
// console.log('Request URL:', url, data, _headers);
const response = await fetch(url || '', {
method,
headers: _headers,