node-simctl 7.4.3 → 7.4.5
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 +13 -0
- package/package.json +3 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [7.4.5](https://github.com/appium/node-simctl/compare/v7.4.4...v7.4.5) (2024-06-04)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* **deps-dev:** bump semantic-release from 23.1.1 to 24.0.0 and conventional-changelog-conventionalcommits to 8.0.0 ([#245](https://github.com/appium/node-simctl/issues/245)) ([b793746](https://github.com/appium/node-simctl/commit/b793746404a46e28649d5949c3ced75066c4a9a5))
|
|
6
|
+
|
|
7
|
+
## [7.4.4](https://github.com/appium/node-simctl/compare/v7.4.3...v7.4.4) (2024-05-16)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Miscellaneous Chores
|
|
11
|
+
|
|
12
|
+
* Update dev dependencies ([22b51c8](https://github.com/appium/node-simctl/commit/22b51c839455651b3d38d46a53ba19f48a3d557c))
|
|
13
|
+
|
|
1
14
|
## [7.4.3](https://github.com/appium/node-simctl/compare/v7.4.2...v7.4.3) (2024-05-16)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"ios",
|
|
7
7
|
"simctl"
|
|
8
8
|
],
|
|
9
|
-
"version": "7.4.
|
|
9
|
+
"version": "7.4.5",
|
|
10
10
|
"author": "Appium Contributors",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"repository": {
|
|
@@ -51,21 +51,10 @@
|
|
|
51
51
|
"dev": "npm run build -- --watch",
|
|
52
52
|
"lint": "eslint .",
|
|
53
53
|
"lint:fix": "npm run lint -- --fix",
|
|
54
|
-
"precommit-lint": "lint-staged",
|
|
55
|
-
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
|
|
56
54
|
"prepare": "npm run build",
|
|
57
55
|
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
|
|
58
56
|
"e2e-test": "mocha --exit --timeout 5m \"./test/e2e/**/*-specs.js\""
|
|
59
57
|
},
|
|
60
|
-
"pre-commit": [
|
|
61
|
-
"precommit-msg",
|
|
62
|
-
"precommit-lint"
|
|
63
|
-
],
|
|
64
|
-
"lint-staged": {
|
|
65
|
-
"*.js": [
|
|
66
|
-
"eslint --fix"
|
|
67
|
-
]
|
|
68
|
-
},
|
|
69
58
|
"prettier": {
|
|
70
59
|
"bracketSpacing": false,
|
|
71
60
|
"printWidth": 100,
|
|
@@ -90,19 +79,11 @@
|
|
|
90
79
|
"appium-xcode": "^5.0.0",
|
|
91
80
|
"chai": "^4.1.2",
|
|
92
81
|
"chai-as-promised": "^7.1.1",
|
|
93
|
-
"conventional-changelog-conventionalcommits": "^
|
|
94
|
-
"eslint": "^8.46.0",
|
|
95
|
-
"eslint-config-prettier": "^9.0.0",
|
|
96
|
-
"eslint-import-resolver-typescript": "^3.5.5",
|
|
97
|
-
"eslint-plugin-import": "^2.28.0",
|
|
98
|
-
"eslint-plugin-mocha": "^10.1.0",
|
|
99
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
100
|
-
"lint-staged": "^15.0.2",
|
|
82
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
101
83
|
"mocha": "^10.0.0",
|
|
102
|
-
"pre-commit": "^1.1.3",
|
|
103
84
|
"prettier": "^3.0.0",
|
|
104
85
|
"proxyquire": "^2.1.3",
|
|
105
|
-
"semantic-release": "^
|
|
86
|
+
"semantic-release": "^24.0.0",
|
|
106
87
|
"sinon": "^18.0.0",
|
|
107
88
|
"ts-node": "^10.9.1",
|
|
108
89
|
"typescript": "^5.4.3"
|