@cccarv82/freya 2.5.0 → 2.5.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 +2 -1
  2. package/package.json +1 -1
package/cli/web.js CHANGED
@@ -3858,8 +3858,9 @@ async function cmdWeb({ port, dir, open, dev }) {
3858
3858
  if (!targetOk && !empty) {
3859
3859
  fs.writeSync(process.stdout.fd, `Dev seed: skipped (workspace not empty and not initialized) -> ${target}\n`);
3860
3860
  } else {
3861
+ await initWorkspace({ targetDir: target, force: false });
3861
3862
  seedDevWorkspace(target);
3862
- fs.writeSync(process.stdout.fd, `Dev seed: created demo files in ${target}\n`);
3863
+ fs.writeSync(process.stdout.fd, `Dev seed: created complete environment in ${target}\n`);
3863
3864
  }
3864
3865
  } catch (e) {
3865
3866
  fs.writeSync(process.stdout.fd, `Dev seed failed: ${e.message || String(e)}\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cccarv82/freya",
3
- "version": "2.5.0",
3
+ "version": "2.5.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",