@antprofuse/veri-bubble 0.1.67 → 0.1.69
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/vb +0 -0
- package/lib/resolve.js +1 -1
- package/lib/tools/debugfs +0 -0
- package/lib/tools/lib/libblkid.so.1 +0 -0
- package/lib/tools/lib/libcom_err.so.2 +0 -0
- package/lib/tools/lib/libdl.so.2 +0 -0
- package/lib/tools/lib/libe2p.so.2 +0 -0
- package/lib/tools/lib/libext2fs.so.2 +0 -0
- package/lib/tools/lib/libss.so.2 +0 -0
- package/lib/tools/lib/libsysconf-alipay.so +0 -0
- package/lib/tools/lib/libuuid.so.1 +0 -0
- package/lib/vb-jvm-watch-agent.jar +0 -0
- package/lib/vb-mock-antvip +0 -0
- package/package.json +1 -1
package/bin/vb
CHANGED
|
Binary file
|
package/lib/resolve.js
CHANGED
|
@@ -6,7 +6,7 @@ const fs = require("fs");
|
|
|
6
6
|
function resolveBinary(name) {
|
|
7
7
|
// All binaries are bundled in this package
|
|
8
8
|
const isLib = name.startsWith("vb-mock-") || name.startsWith("vb-fake-") || name.endsWith(".so") || name === "vb-jvm-watch-agent.jar";
|
|
9
|
-
const subdir = isLib ? "lib" : "bin";
|
|
9
|
+
const subdir = name === "debugfs" ? "lib/tools" : (isLib ? "lib" : "bin");
|
|
10
10
|
const binPath = path.join(__dirname, "..", subdir, name);
|
|
11
11
|
|
|
12
12
|
if (!fs.existsSync(binPath)) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/lib/vb-mock-antvip
CHANGED
|
Binary file
|
package/package.json
CHANGED