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.
- package/dist/recall.js +8 -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
|
-
|
|
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