@appium/docutils 1.1.0 → 1.1.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/build/lib/validate.d.ts +1 -1
- package/lib/validate.ts +1 -1
- package/package.json +8 -8
- package/requirements.txt +2 -2
package/build/lib/validate.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type ValidationKind = typeof NAME_PYTHON | typeof NAME_TYPESCRIPT | typeo
|
|
|
23
23
|
export declare class DocutilsValidator extends EventEmitter {
|
|
24
24
|
/**
|
|
25
25
|
* Current working directory. Defaults to `process.cwd()`
|
|
26
|
-
* @todo This cannot yet be
|
|
26
|
+
* @todo This cannot yet be overridden by user
|
|
27
27
|
*/
|
|
28
28
|
protected readonly cwd: string;
|
|
29
29
|
/**
|
package/lib/validate.ts
CHANGED
|
@@ -79,7 +79,7 @@ export type ValidationKind =
|
|
|
79
79
|
export class DocutilsValidator extends EventEmitter {
|
|
80
80
|
/**
|
|
81
81
|
* Current working directory. Defaults to `process.cwd()`
|
|
82
|
-
* @todo This cannot yet be
|
|
82
|
+
* @todo This cannot yet be overridden by user
|
|
83
83
|
*/
|
|
84
84
|
protected readonly cwd: string;
|
|
85
85
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/docutils",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Documentation generation utilities for Appium and related projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -48,23 +48,23 @@
|
|
|
48
48
|
"start": "node ./build/lib/cli/index.js"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@appium/support": "^6.1.
|
|
51
|
+
"@appium/support": "^6.1.1",
|
|
52
52
|
"@appium/tsconfig": "^0.3.5",
|
|
53
53
|
"@sliphua/lilconfig-ts-loader": "3.2.2",
|
|
54
54
|
"chalk": "4.1.2",
|
|
55
55
|
"consola": "3.4.2",
|
|
56
|
-
"diff": "
|
|
56
|
+
"diff": "8.0.2",
|
|
57
57
|
"json5": "2.2.3",
|
|
58
58
|
"lilconfig": "3.1.3",
|
|
59
59
|
"lodash": "4.17.21",
|
|
60
60
|
"pkg-dir": "5.0.0",
|
|
61
61
|
"read-pkg": "5.2.0",
|
|
62
|
-
"semver": "7.7.
|
|
62
|
+
"semver": "7.7.2",
|
|
63
63
|
"source-map-support": "0.5.21",
|
|
64
|
-
"teen_process": "2.3.
|
|
65
|
-
"type-fest": "4.
|
|
64
|
+
"teen_process": "2.3.2",
|
|
65
|
+
"type-fest": "4.41.0",
|
|
66
66
|
"typescript": "5.8.3",
|
|
67
|
-
"yaml": "2.
|
|
67
|
+
"yaml": "2.8.0",
|
|
68
68
|
"yargs": "17.7.2",
|
|
69
69
|
"yargs-parser": "21.1.1"
|
|
70
70
|
},
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "c8fe4412525f7e1fa237813cf83fe7d98f0125eb"
|
|
79
79
|
}
|
package/requirements.txt
CHANGED