node-simctl 7.4.0 → 7.4.2

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,23 @@
1
+ ## [7.4.2](https://github.com/appium/node-simctl/compare/v7.4.1...v7.4.2) (2024-04-09)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * **deps-dev:** bump @typescript-eslint/parser from 6.21.0 to 7.6.0 ([#240](https://github.com/appium/node-simctl/issues/240)) ([baa83c9](https://github.com/appium/node-simctl/commit/baa83c9783b8c0aa09e6c88aed5d9e58dbcceaa2))
7
+ * Remove extra imports ([3dbe75b](https://github.com/appium/node-simctl/commit/3dbe75b594cb7e6a993e7e0b7681c94372c79457))
8
+
9
+ ## [7.4.1](https://github.com/appium/node-simctl/compare/v7.4.0...v7.4.1) (2024-03-24)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * types pubishing ([6755d64](https://github.com/appium/node-simctl/commit/6755d64d8185df65963f51697f58f8cb3c02cdb8))
15
+
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ * **deps-dev:** bump semantic-release from 22.0.12 to 23.0.2 ([#230](https://github.com/appium/node-simctl/issues/230)) ([7c06e04](https://github.com/appium/node-simctl/commit/7c06e04e4913c51eeec61cb4dbd34d7c261abefc))
20
+
1
21
  ## [7.4.0](https://github.com/appium/node-simctl/compare/v7.3.13...v7.4.0) (2024-03-24)
2
22
 
3
23
 
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![NPM version](http://img.shields.io/npm/v/node-simctl.svg)](https://npmjs.org/package/node-simctl)
4
4
  [![Downloads](http://img.shields.io/npm/dm/node-simctl.svg)](https://npmjs.org/package/node-simctl)
5
5
 
6
- [![Release](https://github.com/appium/node-simctl/actions/workflows/publish.js.yml/badge.svg?branch=master)](https://github.com/appium/node-simctl/actions/workflows/publish.js.yml) [![Build Status](https://travis-ci.org/appium/node-simctl.svg?branch=master)](https://travis-ci.org/appium/node-simctl)
6
+ [![Release](https://github.com/appium/node-simctl/actions/workflows/publish.js.yml/badge.svg?branch=master)](https://github.com/appium/node-simctl/actions/workflows/publish.js.yml)
7
7
 
8
8
  ES6/7 Node wrapper around Apple's `simctl` binary, the "Command line utility to control the iOS Simulator". `simctl` is run as a sub-command of [xcrun](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/xcrun.1.html)
9
9
 
@@ -0,0 +1,4 @@
1
+ export { Simctl };
2
+ export default Simctl;
3
+ import Simctl from './lib/simctl';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;mBAAmB,cAAc"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;;;;;AAAA,0DAAkC;AAEzB,iBAFF,gBAAM,CAEE;AACf,kBAAe,gBAAM,CAAC"}
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "ios",
7
7
  "simctl"
8
8
  ],
9
- "version": "7.4.0",
9
+ "version": "7.4.2",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "files": [
29
29
  "index.js",
30
30
  "lib",
31
- "build/index.js",
31
+ "build/index.*",
32
32
  "build/lib",
33
33
  "CHANGELOG.md"
34
34
  ],
@@ -87,8 +87,6 @@
87
87
  "@types/sinon": "^17.0.1",
88
88
  "@types/sinon-chai": "^3.2.9",
89
89
  "@types/teen_process": "^2.0.2",
90
- "@typescript-eslint/eslint-plugin": "^6.9.0",
91
- "@typescript-eslint/parser": "^6.9.0",
92
90
  "appium-xcode": "^5.0.0",
93
91
  "chai": "^4.1.2",
94
92
  "chai-as-promised": "^7.1.1",
@@ -104,10 +102,10 @@
104
102
  "pre-commit": "^1.1.3",
105
103
  "prettier": "^3.0.0",
106
104
  "proxyquire": "^2.1.3",
107
- "semantic-release": "^22.0.5",
105
+ "semantic-release": "^23.0.2",
108
106
  "sinon": "^17.0.0",
109
107
  "ts-node": "^10.9.1",
110
108
  "typescript": "^5.4.3"
111
109
  },
112
- "types": "./build/lib/index.d.ts"
110
+ "types": "./build/index.d.ts"
113
111
  }