mafit 1.0.4 → 1.0.6
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/bin/mafit.js +23 -11
- package/package.json +10 -2
- package/bin/darwin-arm64/mafit +0 -0
- package/bin/darwin-x64/mafit +0 -0
- package/bin/linux-arm64/mafit +0 -0
- package/bin/linux-x64/mafit +0 -0
- package/bin/win32-arm64/mafit.exe +0 -0
- package/bin/win32-x64/mafit.exe +0 -0
package/bin/mafit.js
CHANGED
|
@@ -2,34 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
import { spawn } from "node:child_process";
|
|
4
4
|
import { existsSync } from "node:fs";
|
|
5
|
+
import { createRequire } from "node:module";
|
|
5
6
|
import path from "node:path";
|
|
6
7
|
import { fileURLToPath } from "node:url";
|
|
7
8
|
|
|
8
9
|
const __filename = fileURLToPath(import.meta.url);
|
|
9
10
|
const __dirname = path.dirname(__filename);
|
|
11
|
+
const require = createRequire(import.meta.url);
|
|
10
12
|
|
|
11
|
-
const
|
|
12
|
-
"darwin-x64",
|
|
13
|
-
"darwin-arm64",
|
|
14
|
-
"linux-x64",
|
|
15
|
-
"linux-arm64",
|
|
16
|
-
"win32-x64",
|
|
17
|
-
"win32-arm64",
|
|
18
|
-
|
|
13
|
+
const PLATFORM_PACKAGE_BY_PLATFORM_ARCH = {
|
|
14
|
+
"darwin-x64": "mafit-darwin-x64",
|
|
15
|
+
"darwin-arm64": "mafit-darwin-arm64",
|
|
16
|
+
"linux-x64": "mafit-linux-x64",
|
|
17
|
+
"linux-arm64": "mafit-linux-arm64",
|
|
18
|
+
"win32-x64": "mafit-windows-x64",
|
|
19
|
+
"win32-arm64": "mafit-windows-arm64",
|
|
20
|
+
};
|
|
19
21
|
|
|
20
22
|
const platformKey = `${process.platform}-${process.arch}`;
|
|
23
|
+
const packageName = PLATFORM_PACKAGE_BY_PLATFORM_ARCH[platformKey];
|
|
21
24
|
|
|
22
|
-
if (!
|
|
25
|
+
if (!packageName) {
|
|
23
26
|
console.error(`Unsupported platform: ${process.platform} (${process.arch})`);
|
|
24
27
|
process.exit(1);
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
const binaryName = process.platform === "win32" ? "mafit.exe" : "mafit";
|
|
28
|
-
|
|
31
|
+
|
|
32
|
+
let binaryPath;
|
|
33
|
+
try {
|
|
34
|
+
const packageJsonPath = require.resolve(`${packageName}/package.json`);
|
|
35
|
+
binaryPath = path.join(path.dirname(packageJsonPath), binaryName);
|
|
36
|
+
} catch {
|
|
37
|
+
console.error(`Missing optional platform package: ${packageName}`);
|
|
38
|
+
console.error("Reinstall mafit or install the matching platform package.");
|
|
39
|
+
process.exit(1);
|
|
40
|
+
}
|
|
29
41
|
|
|
30
42
|
if (!existsSync(binaryPath)) {
|
|
31
43
|
console.error(`Missing mafit binary for ${platformKey}: ${binaryPath}`);
|
|
32
|
-
console.error(
|
|
44
|
+
console.error(`Expected optional platform package: ${packageName}`);
|
|
33
45
|
process.exit(1);
|
|
34
46
|
}
|
|
35
47
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mafit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Mafit local agent CLI",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"mafit": "bin/mafit.js"
|
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"bin",
|
|
15
15
|
"README.md"
|
|
16
16
|
],
|
|
17
|
+
"optionalDependencies": {
|
|
18
|
+
"mafit-linux-x64": "1.0.6",
|
|
19
|
+
"mafit-linux-arm64": "1.0.6",
|
|
20
|
+
"mafit-darwin-x64": "1.0.6",
|
|
21
|
+
"mafit-darwin-arm64": "1.0.6",
|
|
22
|
+
"mafit-windows-x64": "1.0.6",
|
|
23
|
+
"mafit-windows-arm64": "1.0.6"
|
|
24
|
+
},
|
|
17
25
|
"scripts": {
|
|
18
26
|
"build:binaries": "../scripts/build-npm-binaries.sh",
|
|
19
27
|
"pack:check": "npm pack --dry-run"
|
package/bin/darwin-arm64/mafit
DELETED
|
Binary file
|
package/bin/darwin-x64/mafit
DELETED
|
Binary file
|
package/bin/linux-arm64/mafit
DELETED
|
Binary file
|
package/bin/linux-x64/mafit
DELETED
|
Binary file
|
|
Binary file
|
package/bin/win32-x64/mafit.exe
DELETED
|
Binary file
|