-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup creating binary names and paths
Signed-off-by: Sebastian Malton <sebastian@malton.name>
- Loading branch information
Showing
6 changed files
with
32 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Copyright (c) OpenLens Authors. All rights reserved. | ||
* Licensed under MIT License. See LICENSE in root directory for more information. | ||
*/ | ||
import { getInjectable, lifecycleEnum } from "@ogre-tools/injectable"; | ||
import joinPathsInjectable from "../path/join-paths.injectable"; | ||
import baseBundledBinariesDirectoryInjectable from "../vars/base-bundled-binaries-dir.injectable"; | ||
import binaryNameInjectable from "./binary-name.injectable"; | ||
|
||
const bundledBinaryPathInjectable = getInjectable({ | ||
id: "bundled-binary-path", | ||
instantiate: (di, name) => { | ||
const joinPaths = di.inject(joinPathsInjectable); | ||
const binaryName = di.inject(binaryNameInjectable, name); | ||
const baseBundledBinariesDirectory = di.inject(baseBundledBinariesDirectoryInjectable); | ||
|
||
return joinPaths(baseBundledBinariesDirectory, binaryName); | ||
}, | ||
lifecycle: lifecycleEnum.keyedSingleton({ | ||
getInstanceKey: (di, binaryName: string) => binaryName, | ||
}), | ||
}); | ||
|
||
export default bundledBinaryPathInjectable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters