@xhmikosr/bin-wrapper 13.0.6 → 13.0.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {promises as fs} from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import binCheck from '@xhmikosr/bin-check';
4
- import binaryVersionCheck from 'binary-version-check';
4
+ import binVersionCheck from 'bin-version-check';
5
5
  import download from '@xhmikosr/downloader';
6
6
  import osFilterObject from '@xhmikosr/os-filter-obj';
7
7
 
@@ -127,7 +127,7 @@ export default class BinWrapper {
127
127
  }
128
128
 
129
129
  if (this.version()) {
130
- return binaryVersionCheck(this.path(), this.version());
130
+ return binVersionCheck(this.path(), this.version());
131
131
  }
132
132
  });
133
133
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xhmikosr/bin-wrapper",
3
- "version": "13.0.6",
3
+ "version": "13.0.7",
4
4
  "description": "Binary wrapper that makes your programs seamlessly available as local dependencies",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -44,7 +44,7 @@
44
44
  "@xhmikosr/bin-check": "^7.0.3",
45
45
  "@xhmikosr/downloader": "^15.0.2",
46
46
  "@xhmikosr/os-filter-obj": "^3.0.0",
47
- "binary-version-check": "^6.1.0"
47
+ "bin-version-check": "^5.1.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "ava": "~6.2.0",