appium-ios-remotexpc 0.24.2 → 0.24.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.24.3](https://github.com/appium/appium-ios-remotexpc/compare/v0.24.2...v0.24.3) (2026-01-07)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **logger:** fix eslint error ([#129](https://github.com/appium/appium-ios-remotexpc/issues/129)) ([e5ebfbb](https://github.com/appium/appium-ios-remotexpc/commit/e5ebfbb690cc2257f4d661d14dfca6bbb3bfb304))
6
+
1
7
  ## [0.24.2](https://github.com/appium/appium-ios-remotexpc/compare/v0.24.1...v0.24.2) (2026-01-06)
2
8
 
3
9
  ### Miscellaneous Chores
@@ -1,2 +1,3 @@
1
- export declare function getLogger(name: string): import("@appium/types").AppiumLogger;
1
+ import { type AppiumLogger } from '@appium/types';
2
+ export declare function getLogger(name: string): AppiumLogger;
2
3
  //# sourceMappingURL=logger.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/lib/logger.ts"],"names":[],"mappings":"AAIA,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,wCAIrC"}
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/lib/logger.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,eAAe,CAAC;AAIlD,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,CAIpD"}
@@ -1,4 +1,5 @@
1
1
  import { logger } from '@appium/support';
2
+ import {} from '@appium/types';
2
3
  const LOG_LEVEL = (process.env.APPIUM_IOS_REMOTEXPC_LOG_LEVEL || 'info');
3
4
  export function getLogger(name) {
4
5
  const log = logger.getLogger(name);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-ios-remotexpc",
3
- "version": "0.24.2",
3
+ "version": "0.24.3",
4
4
  "main": "build/src/index.js",
5
5
  "types": "build/src/index.d.ts",
6
6
  "type": "module",
package/src/lib/logger.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import { logger } from '@appium/support';
2
+ import { type AppiumLogger } from '@appium/types';
2
3
 
3
4
  const LOG_LEVEL = (process.env.APPIUM_IOS_REMOTEXPC_LOG_LEVEL || 'info') as any;
4
5
 
5
- export function getLogger(name: string) {
6
+ export function getLogger(name: string): AppiumLogger {
6
7
  const log = logger.getLogger(name);
7
8
  log.level = LOG_LEVEL;
8
9
  return log;