Skip to content

Commit 8f2ebf9

Browse files
chore(deps-dev): bump @appium/eslint-config-appium-ts from 2.0.5 to 3.0.0 (#289)
* 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] <support@github.com> * fix lint --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kazuaki Matsuo <fly.49.89.over@gmail.com>
1 parent 36b7c65 commit 8f2ebf9

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

lib/subcommands/io.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { rimraf } from 'rimraf';
2-
import path from 'path';
3-
import os from 'os';
4-
import fs from 'fs/promises';
2+
import path from 'node:path';
3+
import os from 'node:os';
4+
import fs from 'node:fs/promises';
55
import { uuidV4 } from '../helpers';
66
import type { Simctl } from '../simctl';
77

lib/subcommands/keychain.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import os from 'os';
2-
import fs from 'fs/promises';
1+
import os from 'node:os';
2+
import fs from 'node:fs/promises';
33
import { uuidV4 } from '../helpers';
4-
import path from 'path';
4+
import path from 'node:path';
55
import _ from 'lodash';
66
import { rimraf } from 'rimraf';
77
import type { Simctl } from '../simctl';

lib/subcommands/push.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { rimraf } from 'rimraf';
22
import { uuidV4 } from '../helpers';
3-
import path from 'path';
4-
import os from 'os';
5-
import fs from 'fs/promises';
3+
import path from 'node:path';
4+
import os from 'node:os';
5+
import fs from 'node:fs/promises';
66
import type { Simctl } from '../simctl';
77

88
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"singleQuote": true
6161
},
6262
"devDependencies": {
63-
"@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
63+
"@appium/eslint-config-appium-ts": "^3.0.0",
6464
"@appium/tsconfig": "^1.0.0-rc.1",
6565
"@appium/types": "^1.0.0-rc.1",
6666
"@semantic-release/changelog": "^6.0.1",

0 commit comments

Comments
 (0)