@openduo/searchis 0.2.1 → 0.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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/install.js CHANGED
@@ -29,9 +29,9 @@ const src = path.join(__dirname, "bin", subdir, `searchis${ext}`);
29
29
  const dst = path.join(__dirname, "bin", `searchis${ext}`);
30
30
 
31
31
  if (!fs.existsSync(src)) {
32
- console.error(`Missing bundled binary: ${src}`);
33
- console.error("This platform's binary may not be included in this package.");
34
- process.exit(1);
32
+ // In dev/CI the binaries aren't built yet — not an error
33
+ console.log(`Binary not found: ${src} (run build.sh to compile)`);
34
+ process.exit(0);
35
35
  }
36
36
 
37
37
  fs.mkdirSync(path.dirname(dst), { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openduo/searchis",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "Searchis evidence retrieval CLI",
5
5
  "bin": {
6
6
  "searchis": "bin/searchis"