@zabaca/lattice 1.3.0 → 1.3.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/main.js +2 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -3590,7 +3590,7 @@ class ReceiveCommand extends CommandRunner7 {
3590
3590
  `);
3591
3591
  const crocPath = await ensureCroc();
3592
3592
  const receiveCode = await new Promise((resolve4, reject) => {
3593
- const child = spawn(crocPath, ["--yes", "--out", docsDir, code], {
3593
+ const child = spawn(crocPath, ["--classic", "--yes", "--out", docsDir, code], {
3594
3594
  stdio: "inherit"
3595
3595
  });
3596
3596
  child.on("close", (code2) => {
@@ -3703,7 +3703,7 @@ class ShareCommand extends CommandRunner8 {
3703
3703
  \uD83D\uDCE4 Sharing ${isDir ? "directory" : "file"}: ${fullPath}
3704
3704
  `);
3705
3705
  const crocPath = await ensureCroc();
3706
- const child = spawn2(crocPath, ["--disable-clipboard", "send", fullPath], {
3706
+ const child = spawn2(crocPath, ["--classic", "--disable-clipboard", "send", fullPath], {
3707
3707
  stdio: ["inherit", "pipe", "pipe"]
3708
3708
  });
3709
3709
  let codeExtracted = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zabaca/lattice",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Human-initiated, AI-powered knowledge graph for markdown documentation",
5
5
  "type": "module",
6
6
  "bin": {