getprismo 0.1.47 → 0.1.48
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/docs/validation-week.md
CHANGED
|
@@ -5,3 +5,4 @@ Paper cuts, observations, and metric notes from the measurement window. Fix bugs
|
|
|
5
5
|
- 2026-06-12: connector auto-detect was creating a .prismo backup every 5 min when content was unchanged (735 .bak files/day) — fixed in v0.1.46.
|
|
6
6
|
- 2026-06-12: SaaS frontend test harness still emits two warnings during dogfooding: Supabase auth-js probes Node localStorage without a localstorage file, and useWorkspaceData has an existing exhaustive-deps warning. Left as paper cuts during freeze; Recharts mock hoisting warning was fixed in the SaaS repo.
|
|
7
7
|
- 2026-06-12: follow-up dogfood found optimize-report.md still churned backups because the report timestamp changed every auto-detect. Fixed by comparing optimize reports with the generated-at line normalized and added a repeated-run regression test.
|
|
8
|
+
- 2026-06-12: follow-up dogfood found backend-summary.md could churn backups because generated .prismo context files influenced load-bearing text-reference counts. Excluded .prismo generated context from the reference corpus and added a regression test; repeated optimize on the SaaS repo now produces 0 new .bak files after the one-time old-report replacement.
|
|
@@ -282,7 +282,12 @@ function formatGitActivity(activity) {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
function topLoadBearing(root, files, allFiles, gitActivity, limit = 8) {
|
|
285
|
-
const textFiles = (allFiles || []).filter((file) =>
|
|
285
|
+
const textFiles = (allFiles || []).filter((file) =>
|
|
286
|
+
!file.ignored &&
|
|
287
|
+
file.kind !== "binary" &&
|
|
288
|
+
!file.path.replace(/\\/g, "/").startsWith(".prismo/") &&
|
|
289
|
+
/\.(py|tsx?|jsx?|mjs|cjs|vue|svelte)$/.test(file.path)
|
|
290
|
+
);
|
|
286
291
|
const sourcePaths = new Set(textFiles.map((file) => file.path));
|
|
287
292
|
const pythonModuleToPath = new Map();
|
|
288
293
|
for (const file of textFiles.filter((candidate) => candidate.path.endsWith(".py"))) {
|
package/package.json
CHANGED