From 2faf5ffff71a5ebc0746ef95edce74f6c52d59cd Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Sat, 28 Mar 2026 18:41:14 +0100 Subject: [PATCH] fix: align aqua-resolver scripts and tsconfig with meta-updater conventions --- resolving/aqua-resolver/package.json | 8 ++++---- resolving/aqua-resolver/tsconfig.json | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resolving/aqua-resolver/package.json b/resolving/aqua-resolver/package.json index f2c7026da6..facc37772d 100644 --- a/resolving/aqua-resolver/package.json +++ b/resolving/aqua-resolver/package.json @@ -27,10 +27,10 @@ ], "scripts": { "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"", - "_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest", - "test": "pnpm run compile && pnpm run _test", - "prepublishOnly": "pnpm run compile", - "compile": "tsgo --build && pnpm run lint --fix" + "test": "pn compile && pn .test", + "prepublishOnly": "pn compile", + "compile": "tsgo --build && pn lint --fix", + ".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest" }, "dependencies": { "@pnpm/error": "workspace:*", diff --git a/resolving/aqua-resolver/tsconfig.json b/resolving/aqua-resolver/tsconfig.json index f587f303d0..8e96dfb181 100644 --- a/resolving/aqua-resolver/tsconfig.json +++ b/resolving/aqua-resolver/tsconfig.json @@ -9,15 +9,15 @@ "../../__typings__/**/*.d.ts" ], "references": [ - { - "path": "../../fetching/types" - }, { "path": "../../core/error" }, { "path": "../../core/types" }, + { + "path": "../../fetching/types" + }, { "path": "../resolver-base" }