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'; /** 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",