0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

chore: bump user agent (#5050)

This commit is contained in:
Marc Bernard 2025-01-15 18:57:57 +01:00 committed by GitHub
parent 8289cc67b8
commit b3a1499223
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'verdaccio': patch
---
chore: bump user agent

View file

@ -18,7 +18,7 @@
"scripts": {
"clean": "rimraf ./build",
"lint": "eslint . --ext .js,.ts",
"test": "vitest run --testTimeout 50000",
"test": "vitest run --testTimeout 50000 --hookTimeout 20000",
"ge:docs": "typedoc src/index.ts --tsconfig tsconfig.build.json --plugin typedoc-plugin-markdown",
"type-check": "tsc --noEmit -p tsconfig.build.json",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",

View file

@ -139,7 +139,7 @@ export class ServerQuery {
public constructor(url) {
this.url = url.replace(/\/$/, '');
debug('server url %s', this.url);
this.userAgent = 'node/v14.1.2 linux x64';
this.userAgent = 'node/v22.13.0 linux x64';
}
private request(options: any): Promise<ResponseAssert> {