relay-compiler 0.0.0-main-d92b9e55 → 0.0.0-main-bc03126a
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +3 -1
- package/linux-x64/relay +0 -0
- package/macos-arm64/relay +0 -0
- package/macos-x64/relay +0 -0
- package/package.json +1 -1
- package/win-x64/relay.exe +0 -0
package/index.js
CHANGED
@@ -13,8 +13,10 @@
|
|
13
13
|
const path = require('path');
|
14
14
|
|
15
15
|
let binary;
|
16
|
-
if (process.platform === 'darwin') {
|
16
|
+
if (process.platform === 'darwin' && process.arch === 'x64') {
|
17
17
|
binary = path.join(__dirname, 'macos-x64', 'relay');
|
18
|
+
} else if (process.platform === 'darwin' && process.arch === 'arm64') {
|
19
|
+
binary = path.join(__dirname, 'macos-arm64', 'relay');
|
18
20
|
} else if (process.platform === 'linux' && process.arch === 'x64') {
|
19
21
|
binary = path.join(__dirname, 'linux-x64', 'relay');
|
20
22
|
} else if (process.platform === 'win32' && process.arch === 'x64') {
|
package/linux-x64/relay
CHANGED
Binary file
|
Binary file
|
package/macos-x64/relay
CHANGED
Binary file
|
package/package.json
CHANGED
package/win-x64/relay.exe
CHANGED
Binary file
|