@archlinter/core 0.8.2 → 0.9.0-canary.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 +4 -1
  2. package/package.json +7 -7
package/index.d.ts CHANGED
@@ -140,7 +140,9 @@ export interface JsDetectorInfo {
140
140
  export interface JsConfig {
141
141
  ignore: Array<string>
142
142
  aliases: Record<string, string>
143
- thresholds: Record<string, unknown>
143
+ rules: Record<string, any>
144
+ overrides: any[]
145
+ scoring: any
144
146
  entryPoints: Array<string>
145
147
  enableGit: boolean
146
148
  }
@@ -211,6 +213,7 @@ export interface JsSnapshotSmell {
211
213
  files: Array<string>
212
214
  metrics: Record<string, unknown>
213
215
  details?: unknown
216
+ locations: Array<JsLocationDetail>
214
217
  }
215
218
  export declare function runDiff(options: JsDiffOptions): JsDiffResult
216
219
  export declare function runDiffAsync(options: JsDiffOptions): Promise<JsDiffResult>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@archlinter/core",
3
- "version": "0.8.2",
3
+ "version": "0.9.0-canary.1",
4
4
  "description": "Core library for archlint - programmatic API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -27,12 +27,12 @@
27
27
  }
28
28
  },
29
29
  "optionalDependencies": {
30
- "@archlinter/core-win32-x64-msvc": "0.8.2",
31
- "@archlinter/core-darwin-x64": "0.8.2",
32
- "@archlinter/core-linux-x64-gnu": "0.8.2",
33
- "@archlinter/core-linux-x64-musl": "0.8.2",
34
- "@archlinter/core-linux-arm64-gnu": "0.8.2",
35
- "@archlinter/core-darwin-arm64": "0.8.2"
30
+ "@archlinter/core-win32-x64-msvc": "0.9.0-canary.1",
31
+ "@archlinter/core-darwin-x64": "0.9.0-canary.1",
32
+ "@archlinter/core-linux-x64-gnu": "0.9.0-canary.1",
33
+ "@archlinter/core-linux-x64-musl": "0.9.0-canary.1",
34
+ "@archlinter/core-linux-arm64-gnu": "0.9.0-canary.1",
35
+ "@archlinter/core-darwin-arm64": "0.9.0-canary.1"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=18"