@mbe24/99problems 0.1.0 → 0.1.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.
package/Cargo.lock CHANGED
@@ -653,7 +653,7 @@ dependencies = [
653
653
 
654
654
  [[package]]
655
655
  name = "problems99"
656
- version = "0.1.0"
656
+ version = "0.1.1"
657
657
  dependencies = [
658
658
  "anyhow",
659
659
  "clap",
package/Cargo.toml CHANGED
@@ -1,9 +1,9 @@
1
1
  [package]
2
2
  name = "problems99"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  edition = "2024"
5
5
  description = "GitHub issue conversation fetcher CLI"
6
- license = "Apache License 2.0"
6
+ license = "Apache-2.0"
7
7
 
8
8
  [[bin]]
9
9
  name = "99problems"
@@ -24,7 +24,7 @@ const binaryName = process.platform === "win32" ? "99problems.exe" : "99problems
24
24
 
25
25
  let binaryPath;
26
26
  try {
27
- binaryPath = require.resolve(`${pkg}/${binaryName}`);
27
+ binaryPath = require.resolve(`${pkg}/bin/${binaryName}`);
28
28
  } catch {
29
29
  // Fallback: look for binary placed by install.js next to this shim
30
30
  binaryPath = path.join(__dirname, binaryName);
package/npm/install.js CHANGED
@@ -19,7 +19,7 @@ if (!pkg) {
19
19
  }
20
20
 
21
21
  try {
22
- require.resolve(`${pkg}/99problems${process.platform === "win32" ? ".exe" : ""}`);
22
+ require.resolve(`${pkg}/bin/99problems${process.platform === "win32" ? ".exe" : ""}`);
23
23
  console.log(`[99problems] Binary found for ${key}.`);
24
24
  } catch {
25
25
  console.warn(`[99problems] Optional dependency ${pkg} not installed (this is OK if you're building from source).`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mbe24/99problems",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "GitHub issue conversation fetcher CLI",
5
5
  "bin": {
6
6
  "99problems": "./npm/bin/99problems.js"
@@ -9,11 +9,11 @@
9
9
  "postinstall": "node npm/install.js"
10
10
  },
11
11
  "optionalDependencies": {
12
- "@mbe24/99problems-win32-x64": "0.1.0",
13
- "@mbe24/99problems-linux-x64": "0.1.0",
14
- "@mbe24/99problems-darwin-x64": "0.1.0",
15
- "@mbe24/99problems-darwin-arm64": "0.1.0",
16
- "@mbe24/99problems-linux-arm64": "0.1.0"
12
+ "@mbe24/99problems-win32-x64": "0.1.1",
13
+ "@mbe24/99problems-linux-x64": "0.1.1",
14
+ "@mbe24/99problems-darwin-x64": "0.1.1",
15
+ "@mbe24/99problems-darwin-arm64": "0.1.1",
16
+ "@mbe24/99problems-linux-arm64": "0.1.1"
17
17
  },
18
18
  "license": "MIT",
19
19
  "repository": {