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:
parent
8289cc67b8
commit
b3a1499223
3 changed files with 7 additions and 2 deletions
5
.changeset/eleven-rocks-dream.md
Normal file
5
.changeset/eleven-rocks-dream.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'verdaccio': patch
|
||||
---
|
||||
|
||||
chore: bump user agent
|
|
@ -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",
|
||||
|
|
|
@ -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> {
|
||||
|
|
Loading…
Add table
Reference in a new issue