appium-ios-remotexpc 0.21.0 → 0.21.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 +6 -0
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [0.21.1](https://github.com/appium/appium-ios-remotexpc/compare/v0.21.0...v0.21.1) (2025-12-19)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* **format:** use husky precommit hook to auto format before commits ([#116](https://github.com/appium/appium-ios-remotexpc/issues/116)) ([b5a0e64](https://github.com/appium/appium-ios-remotexpc/commit/b5a0e6481fd30c016d31a0f49a4402d035d794e0))
|
|
6
|
+
|
|
1
7
|
## [0.21.0](https://github.com/appium/appium-ios-remotexpc/compare/v0.20.0...v0.21.0) (2025-12-19)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-ios-remotexpc",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"main": "build/src/index.js",
|
|
5
5
|
"types": "build/src/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"build:es": "tsc",
|
|
20
20
|
"build": "run-s clean:* build:*",
|
|
21
21
|
"lint": "eslint src --ext .ts --quiet",
|
|
22
|
-
"prepare": "npm run build",
|
|
22
|
+
"prepare": "husky && npm run build",
|
|
23
23
|
"format": "prettier --write \"{src,test}/**/*.{ts,tsx}\"",
|
|
24
24
|
"format:check": "prettier --check \"{src,test}/**/*.{ts,tsx}\"",
|
|
25
25
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
@@ -76,6 +76,8 @@
|
|
|
76
76
|
"chai-as-promised": "^8.0.1",
|
|
77
77
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
78
78
|
"eslint-plugin-unicorn": "^61.0.2",
|
|
79
|
+
"husky": "^9.1.7",
|
|
80
|
+
"lint-staged": "^16.2.7",
|
|
79
81
|
"mocha": "^11.1.0",
|
|
80
82
|
"prettier": "^3.5.3",
|
|
81
83
|
"rimraf": "^6.0.1",
|
|
@@ -102,5 +104,11 @@
|
|
|
102
104
|
"!.DS_Store",
|
|
103
105
|
"CHANGELOG.md",
|
|
104
106
|
"LICENSE"
|
|
105
|
-
]
|
|
107
|
+
],
|
|
108
|
+
"lint-staged": {
|
|
109
|
+
"*.ts": [
|
|
110
|
+
"eslint --fix",
|
|
111
|
+
"prettier --write"
|
|
112
|
+
]
|
|
113
|
+
}
|
|
106
114
|
}
|