appium-adb 12.0.2 → 12.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +2 -14
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [12.0.3](https://github.com/appium/appium-adb/compare/v12.0.2...v12.0.3) (2024-01-27)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * Remove husky and commitlint ([#722](https://github.com/appium/appium-adb/issues/722)) ([f7adefb](https://github.com/appium/appium-adb/commit/f7adefb82191de6e7d4c36d60b5b7512eb990e4f))
7
+
1
8
  ## [12.0.2](https://github.com/appium/appium-adb/compare/v12.0.1...v12.0.2) (2024-01-25)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-adb",
3
- "version": "12.0.2",
3
+ "version": "12.0.3",
4
4
  "description": "Android Debug Bridge interface",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -9,10 +9,9 @@
9
9
  "dev": "npm run build -- --watch",
10
10
  "lint": "eslint .",
11
11
  "lint:fix": "npm run lint -- --fix",
12
- "lint:staged": "lint-staged",
13
- "lint:commit": "commitlint",
14
12
  "prepare": "npm run rebuild",
15
13
  "rebuild": "npm run clean && npm run build",
14
+ "format": "prettier -w ./lib",
16
15
  "test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
17
16
  "e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.js\""
18
17
  },
@@ -33,12 +32,6 @@
33
32
  "directories": {
34
33
  "lib": "lib"
35
34
  },
36
- "lint-staged": {
37
- "*.(js|ts)": [
38
- "eslint --fix",
39
- "prettier --write"
40
- ]
41
- },
42
35
  "prettier": {
43
36
  "bracketSpacing": false,
44
37
  "printWidth": 100,
@@ -70,8 +63,6 @@
70
63
  "@appium/eslint-config-appium": "^6.0.0",
71
64
  "@appium/test-support": "^3.0.1",
72
65
  "@appium/types": "^0.x",
73
- "@commitlint/cli": "^18.0.0",
74
- "@commitlint/config-conventional": "^18.1.0",
75
66
  "@semantic-release/changelog": "^6.0.1",
76
67
  "@semantic-release/git": "^10.0.1",
77
68
  "@types/async-lock": "^1.4.0",
@@ -94,14 +85,11 @@
94
85
  "eslint-plugin-import": "^2.26.0",
95
86
  "eslint-plugin-mocha": "^9.0.0",
96
87
  "eslint-plugin-promise": "^6.0.0",
97
- "husky": "^8.0.3",
98
- "lint-staged": "^15.0.1",
99
88
  "mocha": "^10.0.0",
100
89
  "prettier": "^3.0.0",
101
90
  "rimraf": "^5.0.0",
102
91
  "semantic-release": "^23.0.0",
103
92
  "sinon": "^17.0.0",
104
- "temp": "^0.x",
105
93
  "ts-node": "^10.9.1",
106
94
  "typescript": "~5.2.2"
107
95
  },