@neat.is/core 0.3.3 → 0.3.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.
- package/dist/{chunk-VABXPLDT.js → chunk-BUB3ASD5.js} +268 -142
- package/dist/chunk-BUB3ASD5.js.map +1 -0
- package/dist/{chunk-ICFH326H.js → chunk-KCEZSFU2.js} +2 -2
- package/dist/cli.cjs +309 -204
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +244 -144
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +2 -2
- package/dist/neatd.cjs +251 -151
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +2 -2
- package/dist/server.cjs +213 -115
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-VABXPLDT.js.map +0 -1
- /package/dist/{chunk-ICFH326H.js.map → chunk-KCEZSFU2.js.map} +0 -0
package/dist/cli.js
CHANGED
|
@@ -22,6 +22,7 @@ import {
|
|
|
22
22
|
evaluateAllPolicies,
|
|
23
23
|
extractFromDirectory,
|
|
24
24
|
formatExtractionBanner,
|
|
25
|
+
formatPrecisionFloorBanner,
|
|
25
26
|
getGraph,
|
|
26
27
|
isStrictExtractionEnabled,
|
|
27
28
|
listProjects,
|
|
@@ -38,7 +39,7 @@ import {
|
|
|
38
39
|
setStatus,
|
|
39
40
|
startPersistLoop,
|
|
40
41
|
startStalenessLoop
|
|
41
|
-
} from "./chunk-
|
|
42
|
+
} from "./chunk-BUB3ASD5.js";
|
|
42
43
|
import {
|
|
43
44
|
startOtelGrpcReceiver
|
|
44
45
|
} from "./chunk-G3PDTGOW.js";
|
|
@@ -1609,6 +1610,7 @@ async function runInit(opts) {
|
|
|
1609
1610
|
if (result.extractionErrors > 0) {
|
|
1610
1611
|
console.log(`errors: ${errorsPath}`);
|
|
1611
1612
|
}
|
|
1613
|
+
console.log(formatPrecisionFloorBanner(result.extractedDropped));
|
|
1612
1614
|
const incompatibilities = findIncompatibilities(nodes);
|
|
1613
1615
|
if (incompatibilities.length > 0) {
|
|
1614
1616
|
console.log("");
|