Skip to content

Commit

Permalink
refactor: Make binaryHandler accessible for maintained installation
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 8, 2024
1 parent 47c7871 commit e6abc3c
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/setup-dependency/install-external/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const optionalChaining = require("es5-ext/optional-chaining"
, resolveExternalContext = require("../../resolve-external-context")
, NpmCrossLinkError = require("../../npm-cross-link-error")
, resolveLogLevel = require("../../utils/resolve-log-level")
, binaryHandler = require("./binary-handler")
, binaryHandler = require("../binary-handler")
, isCoherent = require("./is-coherent")
, resolveIsToBeLinked = require("./resolve-is-to-be-linked");

Expand Down
2 changes: 1 addition & 1 deletion lib/setup-dependency/install-external/is-coherent.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { join, resolve } = require("path")
, isDirectory = require("fs2/is-directory")
, resolveBinariesDict = require("../../resolve-package-binaries-dict")
, binaryHandler = require("./binary-handler");
, binaryHandler = require("../binary-handler");

module.exports = async ({ path, dependentContext, name }, dependencyPackageJson) => {
const binDict = resolveBinariesDict(path);
Expand Down

0 comments on commit e6abc3c

Please sign in to comment.