appium-mac2-driver 3.2.16 → 3.2.17

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
+ ## [3.2.17](https://github.com/appium/appium-mac2-driver/compare/v3.2.16...v3.2.17) (2026-04-10)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([#376](https://github.com/appium/appium-mac2-driver/issues/376)) ([9e1bf35](https://github.com/appium/appium-mac2-driver/commit/9e1bf354462b05e02dabee06067774bcc48c9156))
6
+
1
7
  ## [3.2.16](https://github.com/appium/appium-mac2-driver/compare/v3.2.15...v3.2.16) (2026-02-16)
2
8
 
3
9
  ### Bug Fixes
@@ -0,0 +1,4 @@
1
+ import { Mac2Driver } from './driver';
2
+ export default Mac2Driver;
3
+ export { Mac2Driver };
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAEpC,eAAe,UAAU,CAAC;AAC1B,OAAO,EAAC,UAAU,EAAC,CAAC"}
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Mac2Driver = void 0;
4
- const driver_1 = require("./lib/driver");
4
+ const driver_1 = require("./driver");
5
5
  Object.defineProperty(exports, "Mac2Driver", { enumerable: true, get: function () { return driver_1.Mac2Driver; } });
6
6
  exports.default = driver_1.Mac2Driver;
7
7
  //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":";;;AAAA,qCAAoC;AAG5B,2FAHA,mBAAU,OAGA;AADlB,kBAAe,mBAAU,CAAC"}
package/lib/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ import {Mac2Driver} from './driver';
2
+
3
+ export default Mac2Driver;
4
+ export {Mac2Driver};