@paimaexample/npm-midnight-proof-server 0.3.15 → 0.3.17

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/index.js +2 -0
  2. package/package.json +3 -2
package/index.js CHANGED
@@ -46,6 +46,8 @@ async function runWithBinary(env, args) {
46
46
  if (!checkIfBinaryExists()) {
47
47
  console.log("Binary not found, downloading...");
48
48
  await binary();
49
+ } else {
50
+ console.log("Using existing binary found in proof-server directory");
49
51
  }
50
52
  return runMidnightProofServer(env, args);
51
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paimaexample/npm-midnight-proof-server",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "description": "A wrapper for the Midnight proof server binary",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -11,7 +11,8 @@
11
11
  },
12
12
  "supportedPlatforms": [
13
13
  "linux-amd64",
14
- "linux-arm64"
14
+ "linux-arm64",
15
+ "macos-arm64"
15
16
  ],
16
17
  "dependencies": {
17
18
  "axios": "^1.6.8",