@cccarv82/freya 2.2.0 → 2.2.1

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.
Files changed (2) hide show
  1. package/cli/web.js +5 -0
  2. package/package.json +1 -1
package/cli/web.js CHANGED
@@ -877,6 +877,11 @@ function reportsHtml(defaultDir) {
877
877
  return buildReportsHtml(safeDefault, APP_VERSION);
878
878
  }
879
879
 
880
+ function projectsHtml(defaultDir) {
881
+ const safeDefault = String(defaultDir || './freya').replace(/\\/g, '\\\\').replace(/"/g, '\\"');
882
+ return buildProjectsHtml(safeDefault, APP_VERSION);
883
+ }
884
+
880
885
  function companionHtml(defaultDir) {
881
886
  const safeDefault = String(defaultDir || './freya').replace(/\\/g, '\\\\').replace(/"/g, '\\"');
882
887
  return buildCompanionHtml(safeDefault, APP_VERSION);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cccarv82/freya",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Personal AI Assistant with local-first persistence",
5
5
  "scripts": {
6
6
  "health": "node scripts/validate-data.js && node scripts/validate-structure.js",