@shined/doctor-binding 0.0.33 → 0.0.35
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/index.d.ts +5 -5
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare class Standards {
|
|
|
9
9
|
validateAll(opts?: JsRenderOpts | undefined | null): Promise<Array<JsMessages>>
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
export declare function cloc(paths: Array<string>, opts?:
|
|
12
|
+
export declare function cloc(paths: Array<string>, opts?: JsClocOpts | undefined | null): Array<JsLanguageStats>
|
|
13
13
|
|
|
14
14
|
export interface Diagnostic {
|
|
15
15
|
fileName: string
|
|
@@ -31,6 +31,10 @@ export interface GlobJsArgs {
|
|
|
31
31
|
|
|
32
32
|
export declare function initializeLogger(level?: LogLevel | undefined | null): void
|
|
33
33
|
|
|
34
|
+
export interface JsClocOpts {
|
|
35
|
+
ignore?: Array<string>
|
|
36
|
+
}
|
|
37
|
+
|
|
34
38
|
export interface JsDiagnostics {
|
|
35
39
|
message: string
|
|
36
40
|
code?: string
|
|
@@ -288,10 +292,6 @@ export interface JsMessages {
|
|
|
288
292
|
diagnostics: Array<JsDiagnostics>
|
|
289
293
|
}
|
|
290
294
|
|
|
291
|
-
export interface JsOpts {
|
|
292
|
-
ignore?: Array<string>
|
|
293
|
-
}
|
|
294
|
-
|
|
295
295
|
export interface JsRenderOpts {
|
|
296
296
|
withDashboard?: boolean
|
|
297
297
|
maxRenderCount?: number
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shined/doctor-binding",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"repository": {
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/sheinsight/doctor-engine#readme",
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@shined/doctor-binding-darwin-x64": "0.0.
|
|
24
|
-
"@shined/doctor-binding-darwin-arm64": "0.0.
|
|
25
|
-
"@shined/doctor-binding-win32-x64-msvc": "0.0.
|
|
26
|
-
"@shined/doctor-binding-win32-arm64-msvc": "0.0.
|
|
27
|
-
"@shined/doctor-binding-linux-x64-gnu": "0.0.
|
|
28
|
-
"@shined/doctor-binding-linux-x64-musl": "0.0.
|
|
29
|
-
"@shined/doctor-binding-linux-arm64-gnu": "0.0.
|
|
30
|
-
"@shined/doctor-binding-linux-arm64-musl": "0.0.
|
|
23
|
+
"@shined/doctor-binding-darwin-x64": "0.0.35",
|
|
24
|
+
"@shined/doctor-binding-darwin-arm64": "0.0.35",
|
|
25
|
+
"@shined/doctor-binding-win32-x64-msvc": "0.0.35",
|
|
26
|
+
"@shined/doctor-binding-win32-arm64-msvc": "0.0.35",
|
|
27
|
+
"@shined/doctor-binding-linux-x64-gnu": "0.0.35",
|
|
28
|
+
"@shined/doctor-binding-linux-x64-musl": "0.0.35",
|
|
29
|
+
"@shined/doctor-binding-linux-arm64-gnu": "0.0.35",
|
|
30
|
+
"@shined/doctor-binding-linux-arm64-musl": "0.0.35"
|
|
31
31
|
}
|
|
32
32
|
}
|