@bobfrankston/msger 0.1.186 → 0.1.188
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
|
|
@@ -64,8 +64,9 @@ function checkSystemDependencies(binaryPath) {
|
|
|
64
64
|
const distro = detectDistro();
|
|
65
65
|
showDependencyInstallCommand(distro);
|
|
66
66
|
}
|
|
67
|
-
} catch {
|
|
68
|
-
|
|
67
|
+
} catch (error) {
|
|
68
|
+
console.warn(`⚠️ Could not check system dependencies (ldd failed): ${error.message}`);
|
|
69
|
+
console.warn(' You may need to install webkit2gtk and gtk3 manually.');
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/msger",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.188",
|
|
4
4
|
"description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^
|
|
50
|
+
"@types/node": "^25.2.1"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@bobfrankston/msgcommon": "^0.1.
|
|
53
|
+
"@bobfrankston/msgcommon": "^0.1.23",
|
|
54
54
|
"ansi-to-html": "^0.7.2",
|
|
55
55
|
"json5": "^2.2.3"
|
|
56
56
|
},
|