node-simctl 7.4.4 → 7.5.0
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 +12 -0
- package/build/lib/logger.d.ts.map +1 -1
- package/build/lib/logger.js +2 -2
- package/build/lib/logger.js.map +1 -1
- package/lib/logger.js +2 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [7.5.0](https://github.com/appium/node-simctl/compare/v7.4.5...v7.5.0) (2024-06-07)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* Replace the deprecated npmlog with @appium/logger fork ([#246](https://github.com/appium/node-simctl/issues/246)) ([059afe8](https://github.com/appium/node-simctl/commit/059afe8e3e2e97ec61c1bd0b28e4b159d3d31004))
|
|
6
|
+
|
|
7
|
+
## [7.4.5](https://github.com/appium/node-simctl/compare/v7.4.4...v7.4.5) (2024-06-04)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
1
13
|
## [7.4.4](https://github.com/appium/node-simctl/compare/v7.4.3...v7.4.4) (2024-05-16)
|
|
2
14
|
|
|
3
15
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../lib/logger.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../lib/logger.js"],"names":[],"mappings":";AAEA,kCAA4B;AAU5B,uBAAwB"}
|
package/build/lib/logger.js
CHANGED
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.LOG_PREFIX = void 0;
|
|
7
|
-
const
|
|
7
|
+
const logger_1 = __importDefault(require("@appium/logger"));
|
|
8
8
|
const LOG_PREFIX = 'simctl';
|
|
9
9
|
exports.LOG_PREFIX = LOG_PREFIX;
|
|
10
10
|
function getLogger() {
|
|
11
|
-
const logger = global._global_npmlog ||
|
|
11
|
+
const logger = global._global_npmlog || logger_1.default;
|
|
12
12
|
if (!logger.debug) {
|
|
13
13
|
logger.addLevel('debug', 1000, { fg: 'blue', bg: 'black' }, 'dbug');
|
|
14
14
|
}
|
package/build/lib/logger.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logger.js","sourceRoot":"","sources":["../../lib/logger.js"],"names":[],"mappings":";;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"logger.js","sourceRoot":"","sources":["../../lib/logger.js"],"names":[],"mappings":";;;;;;AAAA,4DAA0C;AAE1C,MAAM,UAAU,GAAG,QAAQ,CAAC;AAYnB,gCAAU;AAVnB,SAAS,SAAS;IAChB,MAAM,MAAM,GAAG,MAAM,CAAC,cAAc,IAAI,gBAAY,CAAC;IACrD,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QAClB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,MAAM,CAAC,CAAC;IACtE,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,MAAM,GAAG,GAAG,SAAS,EAAE,CAAC;AAGxB,kBAAe,GAAG,CAAC"}
|
package/lib/logger.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import appiumLogger from '@appium/logger';
|
|
3
2
|
|
|
4
3
|
const LOG_PREFIX = 'simctl';
|
|
5
4
|
|
|
6
5
|
function getLogger () {
|
|
7
|
-
const logger = global._global_npmlog ||
|
|
6
|
+
const logger = global._global_npmlog || appiumLogger;
|
|
8
7
|
if (!logger.debug) {
|
|
9
8
|
logger.addLevel('debug', 1000, { fg: 'blue', bg: 'black' }, 'dbug');
|
|
10
9
|
}
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"ios",
|
|
7
7
|
"simctl"
|
|
8
8
|
],
|
|
9
|
-
"version": "7.
|
|
9
|
+
"version": "7.5.0",
|
|
10
10
|
"author": "Appium Contributors",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"repository": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"CHANGELOG.md"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
+
"@appium/logger": "^1.3.0",
|
|
36
37
|
"asyncbox": "^3.0.0",
|
|
37
38
|
"bluebird": "^3.5.1",
|
|
38
39
|
"lodash": "^4.2.1",
|
|
39
|
-
"npmlog": "^7.0.1",
|
|
40
40
|
"rimraf": "^5.0.0",
|
|
41
41
|
"semver": "^7.0.0",
|
|
42
42
|
"source-map-support": "^0.x",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
"appium-xcode": "^5.0.0",
|
|
80
80
|
"chai": "^4.1.2",
|
|
81
81
|
"chai-as-promised": "^7.1.1",
|
|
82
|
-
"conventional-changelog-conventionalcommits": "^
|
|
82
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
83
83
|
"mocha": "^10.0.0",
|
|
84
84
|
"prettier": "^3.0.0",
|
|
85
85
|
"proxyquire": "^2.1.3",
|
|
86
|
-
"semantic-release": "^
|
|
86
|
+
"semantic-release": "^24.0.0",
|
|
87
87
|
"sinon": "^18.0.0",
|
|
88
88
|
"ts-node": "^10.9.1",
|
|
89
89
|
"typescript": "^5.4.3"
|