@appium/docutils 0.3.12 → 0.3.13

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.
@@ -2,4 +2,12 @@
2
2
 
3
3
  'use strict';
4
4
 
5
- module.exports = require('../build/lib/cli');
5
+ const {main} = require('../build/lib/cli');
6
+ const {getLogger} = require('../build/lib/logger');
7
+
8
+ const log = getLogger('cli');
9
+
10
+ // eslint-disable-next-line promise/prefer-await-to-then, promise/prefer-await-to-callbacks
11
+ main().catch((err) => {
12
+ log.error('Caught otherwise-unhandled rejection (this is probably a bug):', err);
13
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appium/docutils",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "Documentation generation utilities for Appium and related projects",
5
5
  "keywords": [
6
6
  "automation",
@@ -84,5 +84,5 @@
84
84
  "publishConfig": {
85
85
  "access": "public"
86
86
  },
87
- "gitHead": "2ca15818701b0af3c909dcc696dcd26ae6f50014"
87
+ "gitHead": "922725b4f12c579ebf4afbd00e6e8b5eb7ed9016"
88
88
  }