@shined/doctor 0.0.2-snapshot.3 → 0.0.2-snapshot.5

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 +4 -2
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -14,6 +14,8 @@ export interface GlobJsArgs {
14
14
  pattern?: string
15
15
  ignore?: Array<string>
16
16
  cwd: string
17
+ verbose?: boolean
18
+ absolute?: boolean
17
19
  }
18
20
 
19
21
  export declare function innerDebugLint(oxlintConfig: string, globJsArgs: GlobJsArgs): Promise<Array<Diagnostic>>
@@ -45,6 +47,6 @@ export interface Response {
45
47
  }
46
48
 
47
49
  export interface Span {
48
- start: number
49
- end: number
50
+ offset: number
51
+ len: number
50
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shined/doctor",
3
- "version": "0.0.2-snapshot.3",
3
+ "version": "0.0.2-snapshot.5",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "repository": {
@@ -16,13 +16,13 @@
16
16
  ],
17
17
  "license": "MIT",
18
18
  "optionalDependencies": {
19
- "@shined/doctor-darwin-x64": "0.0.2-snapshot.3",
20
- "@shined/doctor-darwin-arm64": "0.0.2-snapshot.3",
21
- "@shined/doctor-win32-x64-msvc": "0.0.2-snapshot.3",
22
- "@shined/doctor-win32-arm64-msvc": "0.0.2-snapshot.3",
23
- "@shined/doctor-linux-x64-gnu": "0.0.2-snapshot.3",
24
- "@shined/doctor-linux-x64-musl": "0.0.2-snapshot.3",
25
- "@shined/doctor-linux-arm64-gnu": "0.0.2-snapshot.3",
26
- "@shined/doctor-linux-arm64-musl": "0.0.2-snapshot.3"
19
+ "@shined/doctor-darwin-x64": "0.0.2-snapshot.5",
20
+ "@shined/doctor-darwin-arm64": "0.0.2-snapshot.5",
21
+ "@shined/doctor-win32-x64-msvc": "0.0.2-snapshot.5",
22
+ "@shined/doctor-win32-arm64-msvc": "0.0.2-snapshot.5",
23
+ "@shined/doctor-linux-x64-gnu": "0.0.2-snapshot.5",
24
+ "@shined/doctor-linux-x64-musl": "0.0.2-snapshot.5",
25
+ "@shined/doctor-linux-arm64-gnu": "0.0.2-snapshot.5",
26
+ "@shined/doctor-linux-arm64-musl": "0.0.2-snapshot.5"
27
27
  }
28
28
  }