Initial build: SaaS Cost Predictor Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-14 18:26:44 +00:00
commit 9082038e29
21 changed files with 2653 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
const fs = require('fs');
function walk(d) {
for (const f of fs.readdirSync(d)) {
const p = d + '/' + f;
const s = fs.statSync(p);
if (s.isDirectory()) walk(p);
else console.log(p);
}
}
walk('dist');