@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.
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +18 -5
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +449 -224
- package/dist/index.js +18 -5
- package/dist/index.js.map +3 -3
- package/dist/src/cli/scripts/eslintChunked.d.ts +30 -0
- package/package.json +1 -1
|
@@ -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 {};
|