@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 +1 -1
- package/Cargo.toml +2 -2
- package/artifacts/binary-aarch64-apple-darwin/99problems +0 -0
- package/artifacts/binary-aarch64-unknown-linux-gnu/99problems +0 -0
- package/artifacts/binary-x86_64-apple-darwin/99problems +0 -0
- package/artifacts/binary-x86_64-pc-windows-msvc/99problems.exe +0 -0
- package/artifacts/binary-x86_64-unknown-linux-gnu/99problems +0 -0
- package/npm/bin/99problems.js +1 -1
- package/npm/install.js +1 -1
- package/package.json +6 -6
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/npm/bin/99problems.js
CHANGED
|
@@ -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.
|
|
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.
|
|
13
|
-
"@mbe24/99problems-linux-x64": "0.1.
|
|
14
|
-
"@mbe24/99problems-darwin-x64": "0.1.
|
|
15
|
-
"@mbe24/99problems-darwin-arm64": "0.1.
|
|
16
|
-
"@mbe24/99problems-linux-arm64": "0.1.
|
|
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": {
|