@shined/doctor-binding 0.0.23 → 0.0.24-snapshot.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.
Files changed (2) hide show
  1. package/index.d.ts +5 -1
  2. package/package.json +10 -10
package/index.d.ts CHANGED
@@ -18,7 +18,7 @@ export interface DoctorOptions {
18
18
  withDashboard?: boolean
19
19
  }
20
20
 
21
- export declare function getLangStats(paths: Array<string>): Array<LangStats>
21
+ export declare function getLangStats(paths: Array<string>, opts?: Opts | undefined | null): Array<LangStats>
22
22
 
23
23
  export interface GlobJsArgs {
24
24
  ignore?: Array<string>
@@ -323,6 +323,10 @@ export interface NapiSourceSpan {
323
323
  length: number
324
324
  }
325
325
 
326
+ export interface Opts {
327
+ ignore: Array<string>
328
+ }
329
+
326
330
  export interface Position {
327
331
  line: number
328
332
  col: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shined/doctor-binding",
3
- "version": "0.0.23",
3
+ "version": "0.0.24-snapshot.1",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "repository": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public",
11
- "tag": "latest"
11
+ "tag": "snapshot"
12
12
  },
13
13
  "files": [
14
14
  "index.js",
@@ -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.23",
24
- "@shined/doctor-binding-darwin-arm64": "0.0.23",
25
- "@shined/doctor-binding-win32-x64-msvc": "0.0.23",
26
- "@shined/doctor-binding-win32-arm64-msvc": "0.0.23",
27
- "@shined/doctor-binding-linux-x64-gnu": "0.0.23",
28
- "@shined/doctor-binding-linux-x64-musl": "0.0.23",
29
- "@shined/doctor-binding-linux-arm64-gnu": "0.0.23",
30
- "@shined/doctor-binding-linux-arm64-musl": "0.0.23"
23
+ "@shined/doctor-binding-darwin-x64": "0.0.24-snapshot.1",
24
+ "@shined/doctor-binding-darwin-arm64": "0.0.24-snapshot.1",
25
+ "@shined/doctor-binding-win32-x64-msvc": "0.0.24-snapshot.1",
26
+ "@shined/doctor-binding-win32-arm64-msvc": "0.0.24-snapshot.1",
27
+ "@shined/doctor-binding-linux-x64-gnu": "0.0.24-snapshot.1",
28
+ "@shined/doctor-binding-linux-x64-musl": "0.0.24-snapshot.1",
29
+ "@shined/doctor-binding-linux-arm64-gnu": "0.0.24-snapshot.1",
30
+ "@shined/doctor-binding-linux-arm64-musl": "0.0.24-snapshot.1"
31
31
  }
32
32
  }