tooling/toolchainlib/src/platform/detection/init.luau
Erica Marigold 8a02ffc351 refactor: restructure repo
* Restructures monorepo packages
* Updated pesde manifests with scope and other metadata
* Consolidated all interactive install logic into __call metamethod for
  one liner bin re-exports
* Renamed binlib->toolchainlib
* Introduced first real world package - stylua (!!)
2024-11-23 14:35:23 +00:00

7 lines
200 B
Text

local executable = require("./executable")
export type ExecutableDetectionResult = executable.ExecutableDetectionResult
return {
detect = require("./pattern"),
detectFromExecutable = executable,
}