viyv-browser-mcp 0.7.6 → 0.7.7

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/dist/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire as __bundleRequire } from 'node:module';
3
+ const require = __bundleRequire(import.meta.url);
2
4
  var __create = Object.create;
3
5
  var __defProp = Object.defineProperty;
4
6
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -11815,10 +11817,10 @@ function syncNativeHostBinary() {
11815
11817
  }
11816
11818
  }
11817
11819
  function shouldUpdateBridge(bridgeVersion) {
11818
- return compareSemver("0.7.6", bridgeVersion) > 0;
11820
+ return compareSemver("0.7.7", bridgeVersion) > 0;
11819
11821
  }
11820
11822
  function getPackageVersion() {
11821
- return "0.7.6";
11823
+ return "0.7.7";
11822
11824
  }
11823
11825
  function compareSemver(a, b) {
11824
11826
  const pa = a.split(".").map(Number);