crispy-recall 0.1.0 → 0.1.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/dist/recall.js +8 -2
  2. package/package.json +1 -1
package/dist/recall.js CHANGED
@@ -15607,12 +15607,18 @@ var init_claudemd_nudge = __esm({
15607
15607
  // src/installer/install.ts
15608
15608
  var install_exports = {};
15609
15609
  __export(install_exports, {
15610
+ defaultDistDir: () => defaultDistDir,
15610
15611
  runInstall: () => runInstall
15611
15612
  });
15612
15613
  function defaultDistDir() {
15613
15614
  const argv1 = process.argv[1];
15614
- if (argv1)
15615
- return (0, import_node_path11.dirname)(argv1);
15615
+ if (argv1) {
15616
+ try {
15617
+ return (0, import_node_path11.dirname)((0, import_node_fs12.realpathSync)(argv1));
15618
+ } catch {
15619
+ return (0, import_node_path11.dirname)(argv1);
15620
+ }
15621
+ }
15616
15622
  return __dirname;
15617
15623
  }
15618
15624
  function resolveTemplatePath(explicit) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crispy-recall",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local session transcript memory for Claude Code and Codex — search past sessions with FTS5 + semantic vectors.",
5
5
  "license": "MIT",
6
6
  "author": "Sylvester Wong",