node-simctl 7.4.0 → 7.4.1

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,15 @@
1
+ ## [7.4.1](https://github.com/appium/node-simctl/compare/v7.4.0...v7.4.1) (2024-03-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * types pubishing ([6755d64](https://github.com/appium/node-simctl/commit/6755d64d8185df65963f51697f58f8cb3c02cdb8))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **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))
12
+
1
13
  ## [7.4.0](https://github.com/appium/node-simctl/compare/v7.3.13...v7.4.0) (2024-03-24)
2
14
 
3
15
 
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.1",
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
  ],
@@ -104,10 +104,10 @@
104
104
  "pre-commit": "^1.1.3",
105
105
  "prettier": "^3.0.0",
106
106
  "proxyquire": "^2.1.3",
107
- "semantic-release": "^22.0.5",
107
+ "semantic-release": "^23.0.2",
108
108
  "sinon": "^17.0.0",
109
109
  "ts-node": "^10.9.1",
110
110
  "typescript": "^5.4.3"
111
111
  },
112
- "types": "./build/lib/index.d.ts"
112
+ "types": "./build/index.d.ts"
113
113
  }