@absolutejs/absolute 0.19.0-beta.1131 → 0.19.0-beta.1133

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.
@@ -0,0 +1,30 @@
1
+ type ChunkedArgs = {
2
+ changedBase: string | null;
3
+ changedOnly: boolean;
4
+ chunkSize: number;
5
+ globs: string[];
6
+ outFile: string;
7
+ passthrough: string[];
8
+ shards: number;
9
+ };
10
+ export declare const eslintChunked: (args: string[], cwd?: string) => Promise<void>;
11
+ /**
12
+ * Files that differ from `base` plus anything staged/unstaged/untracked —
13
+ * i.e. everything a full lint of `base` has not already verified.
14
+ *
15
+ * Porcelain lines keep their leading whitespace: ` M path` (unstaged) starts
16
+ * with a significant space, and trimming it shifts the 3-char status prefix
17
+ * onto the path itself, silently dropping that file from the set.
18
+ */
19
+ export declare const gitChangedFiles: (cwd: string, base: string | null) => Set<string>;
20
+ /**
21
+ * Every file git can see: tracked plus untracked-but-not-ignored. Respects
22
+ * .gitignore, so no hand-rolled ignore list can drift out of sync with it.
23
+ */
24
+ export declare const gitVisibleFiles: (cwd: string) => string[];
25
+ export declare const parseChunkedArgs: (args: string[]) => ChunkedArgs;
26
+ /** The by-rule triage summary: rule id is the last token of each finding. */
27
+ export declare const ruleSummary: (report: string) => string;
28
+ /** The branch's upstream ref, or null when none is configured. */
29
+ export declare const upstreamRef: (cwd: string) => string | null;
30
+ export {};
package/package.json CHANGED
@@ -698,7 +698,7 @@
698
698
  ]
699
699
  }
700
700
  },
701
- "version": "0.19.0-beta.1131",
701
+ "version": "0.19.0-beta.1133",
702
702
  "workspaces": [
703
703
  "tests/fixtures/*",
704
704
  "tests/fixtures/_packages/*"