From e997511588ddd5a0bda01169ea0fa3246f059966 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 11:02:10 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump @appium/eslint-config-appium-ts Bumps [@appium/eslint-config-appium-ts](https://github.com/appium/appium/tree/HEAD/packages/eslint-config-appium-ts) from 2.0.5 to 3.0.0. - [Release notes](https://github.com/appium/appium/releases) - [Changelog](https://github.com/appium/appium/blob/master/packages/eslint-config-appium-ts/CHANGELOG.md) - [Commits](https://github.com/appium/appium/commits/@appium/eslint-config-appium-ts@3.0.0/packages/eslint-config-appium-ts) --- updated-dependencies: - dependency-name: "@appium/eslint-config-appium-ts" dependency-version: 3.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef4165b..fc0d555 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "singleQuote": true }, "devDependencies": { - "@appium/eslint-config-appium-ts": "^2.0.0-rc.1", + "@appium/eslint-config-appium-ts": "^3.0.0", "@appium/tsconfig": "^1.0.0-rc.1", "@appium/types": "^1.0.0-rc.1", "@semantic-release/changelog": "^6.0.1", From f780b2d2838e36eb969e42ff77fcd6a3fe4ce536 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Tue, 27 Jan 2026 22:06:47 -0800 Subject: [PATCH 2/2] fix lint --- lib/subcommands/io.ts | 6 +++--- lib/subcommands/keychain.ts | 6 +++--- lib/subcommands/push.ts | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/subcommands/io.ts b/lib/subcommands/io.ts index d58a480..404c84b 100644 --- a/lib/subcommands/io.ts +++ b/lib/subcommands/io.ts @@ -1,7 +1,7 @@ import { rimraf } from 'rimraf'; -import path from 'path'; -import os from 'os'; -import fs from 'fs/promises'; +import path from 'node:path'; +import os from 'node:os'; +import fs from 'node:fs/promises'; import { uuidV4 } from '../helpers'; import type { Simctl } from '../simctl'; diff --git a/lib/subcommands/keychain.ts b/lib/subcommands/keychain.ts index 7bdcec1..6be8d48 100644 --- a/lib/subcommands/keychain.ts +++ b/lib/subcommands/keychain.ts @@ -1,7 +1,7 @@ -import os from 'os'; -import fs from 'fs/promises'; +import os from 'node:os'; +import fs from 'node:fs/promises'; import { uuidV4 } from '../helpers'; -import path from 'path'; +import path from 'node:path'; import _ from 'lodash'; import { rimraf } from 'rimraf'; import type { Simctl } from '../simctl'; diff --git a/lib/subcommands/push.ts b/lib/subcommands/push.ts index dd84eed..00792fe 100644 --- a/lib/subcommands/push.ts +++ b/lib/subcommands/push.ts @@ -1,8 +1,8 @@ import { rimraf } from 'rimraf'; import { uuidV4 } from '../helpers'; -import path from 'path'; -import os from 'os'; -import fs from 'fs/promises'; +import path from 'node:path'; +import os from 'node:os'; +import fs from 'node:fs/promises'; import type { Simctl } from '../simctl'; /**