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