@lark-project/meegle 0.0.9 → 0.0.11

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
Binary file
Binary file
Binary file
package/bin/meegle.js CHANGED
@@ -5,7 +5,8 @@ const path = require("path");
5
5
 
6
6
  const platform = os.platform();
7
7
  const arch = os.arch();
8
- const binName = `meegle-${platform}-${arch}`;
8
+ const ext = platform === "win32" ? ".exe" : "";
9
+ const binName = `meegle-${platform}-${arch}${ext}`;
9
10
  const binPath = path.join(__dirname, binName);
10
11
 
11
12
  try {
@@ -14,7 +15,7 @@ try {
14
15
  console.error(
15
16
  `Unsupported platform: ${platform}-${arch}\n` +
16
17
  `Expected binary at: ${binPath}\n` +
17
- `Supported: darwin-arm64, darwin-x64, linux-arm64, linux-x64`
18
+ `Supported: darwin-arm64, darwin-x64, linux-arm64, linux-x64, win32-x64, win32-arm64`
18
19
  );
19
20
  process.exit(1);
20
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-project/meegle",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "Agent-First CLI for Meegle (Lark Project)",
5
5
  "license": "ISC",
6
6
  "bin": {
@@ -11,7 +11,8 @@
11
11
  },
12
12
  "os": [
13
13
  "darwin",
14
- "linux"
14
+ "linux",
15
+ "win32"
15
16
  ],
16
17
  "cpu": [
17
18
  "arm64",